Browse Source

fix 8d603177: always show frames-only scripts

tophf 2 years ago
parent
commit
683d46ff75
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/background/utils/popup-tracker.js

+ 1 - 1
src/background/utils/popup-tracker.js

@@ -68,7 +68,7 @@ async function prefetchSetPopup() {
 }
 
 function notifyTab(tabId, data) {
-  if (badges[tabId]?.[INJECT]) {
+  if (badges[tabId]?.total) {
     sendTabCmd(tabId, 'PopupShown', data);
   }
 }