Skip to content
This repository has been archived by the owner on Jun 8, 2018. It is now read-only.

Commit

Permalink
Fix #296 by removing tainted domain exception
Browse files Browse the repository at this point in the history
  • Loading branch information
Synzvato committed Jun 25, 2018
1 parent 7b911c6 commit a986800
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions core/interceptor.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit a986800

Please sign in to comment.