Fix notification parsing for team memeber added

This commit is contained in:
kolaente 2021-02-23 18:16:13 +01:00
parent d833e42aaf
commit 39861fbd0f
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -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'
}