Fix bz#1823729 - Listen only for status on tab updated
This commit is contained in:
Rafee Rahman
2024-08-29 09:22:53 -04:00
committed by GitHub
+3 -1
View File
@@ -226,7 +226,9 @@ const messageHandler = {
// if it's a container tab wait for it to complete and
// unhide other tabs from this container
if (tab.cookieStoreId.startsWith("firefox-container")) {
browser.tabs.onUpdated.addListener(this.tabUpdateHandler);
browser.tabs.onUpdated.addListener(this.tabUpdateHandler, {
properties: ["status"]
});
}
}
}