aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortaehoon <th.dev91@gmail.com>2019-05-06 16:41:12 -0400
committertaehoon <th.dev91@gmail.com>2019-05-06 16:41:12 -0400
commit134b1894d69074c0b51814888faa57c09f610e99 (patch)
treeb2ab60426b6650fb2dc985bb45340147665871f6 /src
parent44a18eb8380bc7094c722df5aaadb29d45074dbe (diff)
status attention doesn’t have relationship entities
Diffstat (limited to 'src')
-rw-r--r--src/components/status/status.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/status/status.js b/src/components/status/status.js
index d5895832..123caf16 100644
--- a/src/components/status/status.js
+++ b/src/components/status/status.js
@@ -173,7 +173,7 @@ const Status = {
if (this.status.user.id === this.status.attentions[i].id) {
continue
}
- if (checkFollowing && this.status.attentions[i].following) {
+ if (checkFollowing && this.$store.getters.findUser(this.status.attentions[i].id).following) {
return false
}
if (this.status.attentions[i].id === this.$store.state.users.currentUser.id) {