From bed17673a8673103448ca5849198fd4c879f5a58 Mon Sep 17 00:00:00 2001 From: Daniel James Smith Date: Mon, 18 Oct 2021 18:03:46 +0200 Subject: [PATCH] Reduce blinking of notificationBar when other tabs update --- src/background/tabs.background.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/background/tabs.background.ts b/src/background/tabs.background.ts index 8963f83fbe..ec8c0dd6ec 100644 --- a/src/background/tabs.background.ts +++ b/src/background/tabs.background.ts @@ -31,7 +31,7 @@ export default class TabsBackground { return; } this.main.onUpdatedRan = true; - await this.main.checkNotificationQueue(); + await this.main.checkNotificationQueue(tab); await this.main.refreshBadgeAndMenu(); this.main.messagingService.send('tabUpdated'); this.main.messagingService.send('tabChanged');