Fix notification parsing for team memeber added
This commit is contained in:
parent
d833e42aaf
commit
39861fbd0f
1 changed files with 1 additions and 1 deletions
|
@ -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'
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue