attempt at fixing switching to user TL

This commit is contained in:
Henry Jameson 2019-03-09 01:36:35 +02:00
parent fe624f6114
commit a02a74e9b9
2 changed files with 10 additions and 5 deletions

View file

@ -145,11 +145,11 @@ const Status = {
return !!(this.status.in_reply_to_status_id && this.status.in_reply_to_user_id)
},
replyToName () {
const user = this.$store.getters.findUser(this.status.in_reply_to_user_id)
if (this.status.in_reply_to_screen_name) {
return this.status.in_reply_to_screen_name
} else {
return user.screen_name
const user = this.$store.getters.findUser(this.status.in_reply_to_user_id)
return user && user.screen_name
}
},
hideReply () {