logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe
commit: fa33e3ec58d56a35d276861df761673d7b412696
parent: fd3811d651f5be0c74f33850df2e95ed18f86a0c
Author: HJ <30-hj@users.noreply.git.pleroma.social>
Date:   Fri, 12 Apr 2019 07:53:46 +0000

Merge branch 'fix-notif-user' into 'develop'

Fix wrong usercard notification

Closes #493

See merge request pleroma/pleroma-fe!755

Diffstat:

Msrc/components/notification/notification.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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: {