fix initial state of UserNotification

This commit is contained in:
Nicolas Constant 2019-03-31 20:32:13 -04:00
parent e3d5362306
commit 237b9aab15
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 2 additions and 2 deletions

View File

@ -196,7 +196,7 @@ export class UserNotification {
hasNewNotifications: boolean;
hasNewMentions: boolean;
notifications: Notification[];
mentions: Status[];
notifications: Notification[] = [];
mentions: Status[] = [];
lastId: string;
}