forked from AkkomaGang/akkoma-fe
fix #157 show screen_name when name is empty in retweet
This commit is contained in:
parent
1a6207be1d
commit
7d93beb96d
1 changed files with 1 additions and 1 deletions
|
@ -87,7 +87,7 @@ const Status = {
|
|||
}
|
||||
},
|
||||
retweet () { return !!this.statusoid.retweeted_status },
|
||||
retweeter () { return this.statusoid.user.name },
|
||||
retweeter () { return this.statusoid.user.name || this.statusoid.user.screen_name },
|
||||
retweeterHtml () { return this.statusoid.user.name_html },
|
||||
status () {
|
||||
if (this.retweet) {
|
||||
|
|
Loading…
Reference in a new issue