Notifications fix (#5)

This commit is contained in:
2025-05-09 12:47:01 +02:00
committed by GitHub
parent b7f9ee572e
commit 53bfeab116
7 changed files with 13 additions and 10 deletions

View File

@@ -135,4 +135,11 @@ export class LocalStorageService {
}
public newsflag: number | false = false;
public get vapid(): string {
return localStorage.getItem('vapid')!
}
public set vapid(value: string) {
localStorage.setItem("vapid", value)
}
}