diff --git a/proxy.js b/proxy.js index 669930f..5f69696 100644 --- a/proxy.js +++ b/proxy.js @@ -132,14 +132,7 @@ var handleContextProxyRequest = async function(requestDetails) { }; if (requestDetails.tabId > 0) { - if (proxyHost(requestDetails.url)) { - console.log("(Proxy)I2P Proxy test URL detected, ", requestDetails.url); - return { - type: getScheme(), - host: getHost(), - port: getPort() - }; - } else if (i2pHost(requestDetails.url)) { + if (i2pHost(requestDetails.url)) { console.log("(Proxy)I2P URL detected, "); var tab = tabGet(requestDetails.tabId); var mtab = tab.then(tabFind);