proper cachin of headTailLinks, show mentions in notificaitons always

This commit is contained in:
Henry Jameson 2021-06-10 13:01:00 +03:00
parent c6c478f4cf
commit 394fd462dc
7 changed files with 25 additions and 19 deletions

View file

@ -142,7 +142,8 @@ const Status = {
replyProfileLink () {
if (this.isReply) {
const user = this.$store.getters.findUser(this.status.in_reply_to_user_id)
return user && user.statusnet_profile_url
// FIXME Why user not found sometimes???
return user ? user.statusnet_profile_url : 'NOT_FOUND'
}
},
retweet () { return !!this.statusoid.retweeted_status },