From ff9a1484b08aa9dc74ce61464dc8760f0d46b51a Mon Sep 17 00:00:00 2001 From: idk Date: Tue, 24 Dec 2019 21:14:40 -0500 Subject: [PATCH] figure out why it isn't launching into containers like on desktop --- scrub.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/scrub.js b/scrub.js index 7102237..f2cf822 100644 --- a/scrub.js +++ b/scrub.js @@ -53,12 +53,9 @@ var contextScrub = async function(requestDetails) { let context = await browser.contextualIdentities.get( tabInfo.cookieStoreId ); - if (context == undefined) { - return "firefox-default"; - } return context; } catch (error) { - return "firefox-default"; + return undefined; } }; var tabGet = async function(tabId) {