Try and bail out of all proxy-setting in the Wire Web App

This commit is contained in:
idk
2020-12-09 17:09:54 -05:00
parent 7b2216a12f
commit 9cd6ce888e
3 changed files with 38 additions and 35 deletions

View File

@@ -110,8 +110,6 @@ var handlerSetup = function(requestDetails) {
return requestDetails;
};
browser.webRequest.onBeforeRequest.addListener(
handlerSetup,
{ urls: ['<all_urls>'] },
['blocking']
);
browser.webRequest.onBeforeRequest.addListener(handlerSetup, {
urls: ['<all_urls>'],
});