Fix incorrect moderator string stopping mod notification. Closes #2762

This commit is contained in:
Gabe Kangas
2023-03-13 16:41:29 -07:00
parent 8407bc9687
commit 25f52e8850

View File

@ -32,6 +32,6 @@ export class User {
return false;
}
return this.scopes.includes('moderator');
return this.scopes.includes('MODERATOR');
};
}