We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a53eb64 + 51ead29 commit 97891f6Copy full SHA for 97891f6
src/js/background/messageHandler.js
@@ -96,10 +96,10 @@ const messageHandler = {
96
break;
97
case "assignAndReloadInContainer":
98
tab = await assignManager.reloadPageInContainer(
99
- m.url,
+ m.url,
100
m.currentUserContextId,
101
- m.newUserContextId,
102
- m.tabIndex,
+ m.newUserContextId,
+ m.tabIndex,
103
m.active,
104
true
105
);
@@ -226,7 +226,9 @@ const messageHandler = {
226
// if it's a container tab wait for it to complete and
227
// unhide other tabs from this container
228
if (tab.cookieStoreId.startsWith("firefox-container")) {
229
- browser.tabs.onUpdated.addListener(this.tabUpdateHandler);
+ browser.tabs.onUpdated.addListener(this.tabUpdateHandler, {
230
+ properties: ["status"]
231
+ });
232
}
233
234
0 commit comments