Skip to content
Snippets Groups Projects
Verified Commit a986800e authored by Thomas Rientjes's avatar Thomas Rientjes
Browse files

Fix #296 by removing tainted domain exception

parent 7b911c6e
No related branches found
No related tags found
No related merge requests found
......@@ -83,10 +83,7 @@ interceptor.handleRequest = function (requestDetails, tabIdentifier, tab) {
};
if (undetectableTaintedDomains[tabDomain] || (/yandex\./).test(tabDomain)) {
if (tabDomain !== 'yandex.ru') {
return interceptor._handleMissingCandidate(requestDetails.url);
}
return interceptor._handleMissingCandidate(requestDetails.url);
}
targetDetails = requestAnalyzer.getLocalTarget(requestDetails);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment