mirror of https://github.com/gorhill/uBlock.git
fix #2631: regression introduced in 0232382695
This commit is contained in:
parent
fd459c8ecc
commit
853f012802
|
@ -313,7 +313,7 @@ var toBlockDocResult = function(url, hostname, logData) {
|
||||||
// https://github.com/chrisaljoudi/uBlock/issues/1212
|
// https://github.com/chrisaljoudi/uBlock/issues/1212
|
||||||
// Relax the rule: verify that the match is completely before the path part
|
// Relax the rule: verify that the match is completely before the path part
|
||||||
if (
|
if (
|
||||||
(match.index + match.length) <=
|
(match.index + match[0].length) <=
|
||||||
(url.indexOf(hostname) + hostname.length + 1)
|
(url.indexOf(hostname) + hostname.length + 1)
|
||||||
) {
|
) {
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in New Issue