mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
this fixes https://github.com/gorhill/uBlock/issues/171
This commit is contained in:
parent
a01113a1e7
commit
ffdd3dfe63
2 changed files with 14 additions and 3 deletions
|
|
@ -20,7 +20,7 @@
|
|||
*/
|
||||
|
||||
/* jshint bitwise: false */
|
||||
/* global vAPI, µBlock */
|
||||
/* global µBlock */
|
||||
|
||||
/*******************************************************************************
|
||||
|
||||
|
|
@ -438,7 +438,7 @@ PageStore.prototype.getNetFilteringSwitch = function() {
|
|||
// https://github.com/chrisaljoudi/uBlock/issues/1078
|
||||
// Use both the raw and normalized URLs.
|
||||
this.netFiltering = µb.getNetFilteringSwitch(tabContext.normalURL);
|
||||
if ( this.netFiltering && tabContext.rawURL !== tabContext.pageURL ) {
|
||||
if ( this.netFiltering && tabContext.rawURL !== tabContext.normalURL ) {
|
||||
this.netFiltering = µb.getNetFilteringSwitch(tabContext.rawURL);
|
||||
}
|
||||
this.netFilteringReadTime = Date.now();
|
||||
|
|
|
|||
|
|
@ -180,6 +180,12 @@ var matchWhitelistDirective = function(url, hostname, directive) {
|
|||
var line, matches, key, directive;
|
||||
for ( var i = 0; i < lines.length; i++ ) {
|
||||
line = lines[i].trim();
|
||||
// https://github.com/gorhill/uBlock/issues/171
|
||||
// Skip empty lines
|
||||
if ( line === '' ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Don't throw out commented out lines: user might want to fix them
|
||||
if ( line.charAt(0) === '#' ) {
|
||||
key = '#';
|
||||
|
|
@ -208,9 +214,14 @@ var matchWhitelistDirective = function(url, hostname, directive) {
|
|||
}
|
||||
}
|
||||
|
||||
// https://github.com/gorhill/uBlock/issues/171
|
||||
// Skip empty keys
|
||||
if ( key === '' ) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// Be sure this stays fixed:
|
||||
// https://github.com/chrisaljoudi/uBlock/issues/185
|
||||
|
||||
if ( whitelist.hasOwnProperty(key) === false ) {
|
||||
whitelist[key] = [];
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue