Skip to content

Commit cd68b60

Browse files
committed
Remove needless parameter
1 parent fcb16ee commit cd68b60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webextensions/background/uriMatcher.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ var URIMatcher = {
4848
continue;
4949
}
5050

51-
let maybeURIs = Array.from(match, 0).map(aMaybeURI => this.sanitizeURIString(aMaybeURI));
51+
let maybeURIs = Array.from(match).map(aMaybeURI => this.sanitizeURIString(aMaybeURI));
5252
range.maybeURIs = [];
5353
for (let maybeURI of maybeURIs) {
5454
let uri = this.fixupURI(maybeURI, aParams.baseURI);

0 commit comments

Comments
 (0)