From a7c7f5722e6f25ec5c01cc2b17691202032d9dc8 Mon Sep 17 00:00:00 2001 From: tophf Date: Mon, 24 Feb 2020 19:13:13 +0300 Subject: [PATCH] fixup! cosmetics --- background/icon-manager.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/background/icon-manager.js b/background/icon-manager.js index 7c63b6be..7319b32e 100644 --- a/background/icon-manager.js +++ b/background/icon-manager.js @@ -128,7 +128,9 @@ const iconManager = (() => { } function refreshStaleBadges() { - for (const tabId of staleBadges) refreshIconBadgeText(tabId); + for (const tabId of staleBadges) { + refreshIconBadgeText(tabId); + } staleBadges.clear(); } })();