mirror of https://github.com/gorhill/uBlock.git
Fixed wrong method for number of elements in a Map (#3755)
This commit is contained in:
parent
1cd781796e
commit
0bb7b76338
|
@ -2271,7 +2271,7 @@ FilterContainer.prototype.fromCompiledContent = function(reader) {
|
|||
/******************************************************************************/
|
||||
|
||||
FilterContainer.prototype.matchAndFetchData = function(dataType, requestURL, out, outlog) {
|
||||
if ( this.dataFilters.length === 0 ) { return; }
|
||||
if ( this.dataFilters.size === 0 ) { return; }
|
||||
|
||||
let url = this.urlTokenizer.setURL(requestURL);
|
||||
|
||||
|
|
Loading…
Reference in New Issue