aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/status/status.js4
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 () {