mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update Timeline.vue, add remote post/profile links
This commit is contained in:
parent
59d14fd9a8
commit
d41470830b
1 changed files with 8 additions and 18 deletions
|
@ -1411,22 +1411,19 @@
|
||||||
},
|
},
|
||||||
|
|
||||||
statusUrl(status) {
|
statusUrl(status) {
|
||||||
return status.url;
|
if(status.local == true) {
|
||||||
|
return status.url;
|
||||||
|
}
|
||||||
|
|
||||||
// if(status.local == true) {
|
return '/i/web/post/_/' + status.account.id + '/' + status.id;
|
||||||
// return status.url;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// return '/i/web/post/_/' + status.account.id + '/' + status.id;
|
|
||||||
},
|
},
|
||||||
|
|
||||||
profileUrl(status) {
|
profileUrl(status) {
|
||||||
return status.account.url;
|
if(status.local == true) {
|
||||||
// if(status.local == true) {
|
return status.account.url;
|
||||||
// return status.account.url;
|
}
|
||||||
// }
|
|
||||||
|
|
||||||
// return '/i/web/profile/_/' + status.account.id;
|
return '/i/web/profile/_/' + status.account.id;
|
||||||
},
|
},
|
||||||
|
|
||||||
statusCardUsernameFormat(status) {
|
statusCardUsernameFormat(status) {
|
||||||
|
@ -1480,13 +1477,6 @@
|
||||||
.then(res => {
|
.then(res => {
|
||||||
this.userStory = res.data;
|
this.userStory = res.data;
|
||||||
})
|
})
|
||||||
},
|
|
||||||
|
|
||||||
usernameLookup(text, cb) {
|
|
||||||
axios.get('/api/pixelfed/v2/username/lookup?q=' + text)
|
|
||||||
.then(res => {
|
|
||||||
cb(res.data);
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue