Fix notification number

pull/5615/head
Chocobozzz 2023-02-14 10:03:18 +01:00
parent 9625be3857
commit 4de99f22df
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ export class NotificationComponent implements OnInit, OnDestroy {
this.userNotificationService.countUnreadNotifications()
.subscribe({
next: result => {
this.unreadNotifications = 102
this.unreadNotifications = result
this.subscribeToNotifications()
},