From 39861fbd0ff17a5d203bf843ef13b8c761121ee3 Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 23 Feb 2021 18:16:13 +0100 Subject: [PATCH] Fix notification parsing for team memeber added --- src/models/notification.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/notification.js b/src/models/notification.js index 779cb7fb..c37e117d 100644 --- a/src/models/notification.js +++ b/src/models/notification.js @@ -72,7 +72,7 @@ export default class NotificationModel extends AbstractModel { case names.TEAM_MEMBER_ADDED: who = `${this.notification.member.getDisplayName()}` - if (user !== null && user.id === this.notification.memeber.id) { + if (user !== null && user.id === this.notification.member.id) { who = 'you' }