mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
Fixed wrong method for number of elements in a Map (#3755)
This commit is contained in:
parent
1cd781796e
commit
0bb7b76338
1 changed files with 1 additions and 1 deletions
|
|
@ -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 a new issue