diff options
| author | Henry Jameson <me@hjkos.com> | 2019-01-24 20:27:20 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2019-01-24 20:27:20 +0300 |
| commit | 416424d04838bdb174279f2494eaadb7ac7505c1 (patch) | |
| tree | e0c2858f3ed102ce09d26c351869ba4e896d7eaf /src | |
| parent | 61c9ecd855eaa557610246c48abe276058d11ee6 (diff) | |
review
Diffstat (limited to 'src')
| -rw-r--r-- | src/components/status/status.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js index 44a6d5c5..b14a74ec 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -79,8 +79,6 @@ const Status = { replyProfileLink () { if (this.isReply) { return this.generateUserProfileLink(this.status.in_reply_to_status_id, this.replyToName) - } else { - return '' } }, retweet () { return !!this.statusoid.retweeted_status }, @@ -134,7 +132,7 @@ const Status = { if (user) { return user.screen_name } else { - return this.status.in_reply_to_screen_name || '' + return this.status.in_reply_to_screen_name } }, hideReply () { |
