aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2019-04-12 07:53:46 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2019-04-12 07:53:46 +0000
commitfa33e3ec58d56a35d276861df761673d7b412696 (patch)
tree1c576c0ca7566408a7af89f608c75bf88ae9d2f6 /src
parentfd3811d651f5be0c74f33850df2e95ed18f86a0c (diff)
parent7d01b3d8baf5bb6b34dfa4e9fe14a32805a821a1 (diff)
Merge branch 'fix-notif-user' into 'develop'
Fix wrong usercard notification Closes #493 See merge request pleroma/pleroma-fe!755
Diffstat (limited to 'src')
-rw-r--r--src/components/notification/notification.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/notification/notification.js b/src/components/notification/notification.js
index 67d54724..e59e7497 100644
--- a/src/components/notification/notification.js
+++ b/src/components/notification/notification.js
@@ -23,7 +23,7 @@ const Notification = {
return generateProfileLink(user.id, user.screen_name, this.$store.state.instance.restrictedNicknames)
},
getUser (notification) {
- return this.$store.state.users.usersObject[notification.action.user.id]
+ return this.$store.state.users.usersObject[notification.from_profile.id]
}
},
computed: {