Merge pull request #5929 from FinnStutzenstein/chatPersistance

Do not clear chat notifications from local storage
This commit is contained in:
Emanuel Schütze 2021-03-01 16:19:28 +01:00 committed by GitHub
commit 05fcf40b51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -43,6 +43,7 @@ export class ChatNotificationService {
private openChatgroupIds: number[] = [];
public constructor(private repo: ChatMessageRepositoryService, private storage: StorageService) {
this.storage.addNoClearKey(STORAGE_KEY);
this.setup();
}