1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-07-05 11:37:01 +02:00

Mind that Firefox 59 and less does not support browser.dns

This commit is contained in:
Raymond Hill 2019-12-08 11:08:04 -05:00
parent 1364e4836e
commit 832ebd360e
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -68,11 +68,12 @@
this.cnameMaxTTL = 60;
this.cnameReplayFullURL = false;
this.cnameTimer = undefined;
this.cnameUncloak = true;
this.cnameUncloak = browser.dns instanceof Object;
}
setOptions(options) {
super.setOptions(options);
this.cnameUncloak = options.cnameUncloak !== false;
this.cnameUncloak = browser.dns instanceof Object &&
options.cnameUncloak !== false;
this.cnameIgnoreList = this.regexFromStrList(options.cnameIgnoreList);
this.cnameIgnore1stParty = options.cnameIgnore1stParty !== false;
this.cnameIgnoreExceptions = options.cnameIgnoreExceptions !== false;
@ -202,6 +203,7 @@
}
onBeforeSuspendableRequest(details) {
const r = super.onBeforeSuspendableRequest(details);
if ( this.cnameUncloak === false ) { return r; }
if ( r !== undefined ) {
if (
r.cancel === true ||
@ -217,7 +219,6 @@
) {
return;
}
if ( this.cnameUncloak === false ) { return; }
const hn = vAPI.hostnameFromNetworkURL(details.url);
const cname = this.cnames.get(hn);
if ( cname === '' ) { return; }