no but closer

This commit is contained in:
idk
2019-11-24 23:04:49 -05:00
parent a33afc52d3
commit 77f57d7f1e
2 changed files with 0 additions and 20 deletions

View File

@@ -127,17 +127,6 @@ var handleContextProxyRequest = async function(requestDetails) {
};
var tabFind = async function(tabId) {
try {
context = await browser.contextualIdentities.query({
name: titlepref
});
console.log(
"(proxy) forcing context",
titlepref,
tabId.cookieStoreId,
"=>",
context[0].cookieStoreId
);
tabId.cookieStoreId = context[0].cookieStoreId;
return tabId;
} catch (error) {
console.log("(proxy)Context Error", error);

View File

@@ -57,15 +57,6 @@ var contextScrub = async function(requestDetails) {
};
var tabFind = async function(tabId) {
try {
context = await browser.contextualIdentities.query({
name: titlepref
});
console.log(
"(scrub) forcing context",
titlepref,
"=>",
context[0].cookieStoreId
);
return tabId;
} catch (error) {
console.log("(scrub)Context Error", error);