From 9360576552c4daeb6d56237c194ec5d4e4a20929 Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 6 Oct 2022 12:08:39 +0200 Subject: [PATCH] Fix multi-tab usage with notify_push Signed-off-by: Joas Schilling --- src/NotificationsApp.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NotificationsApp.vue b/src/NotificationsApp.vue index 4d7a49a97..620005260 100644 --- a/src/NotificationsApp.vue +++ b/src/NotificationsApp.vue @@ -336,7 +336,7 @@ export default { */ _fetchAfterNotifyPush() { this.backgroundFetching = true - if (this.notifyPush && this.tabId !== this.lastTabId) { + if (this.hasNotifyPush && this.tabId !== this.lastTabId) { console.debug('Deferring notification refresh from browser storage are notify_push event to give the last tab the chance to do it') setTimeout(() => { this._fetch()