mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-07 03:12:33 +01:00
Fix improperly detecting ruleset changes re. dynamic URL filtering
Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/2330\
This commit is contained in:
parent
de1eeb0770
commit
7ec59b09ac
@ -261,7 +261,7 @@ class DynamicURLRuleFiltering {
|
|||||||
this.context === context &&
|
this.context === context &&
|
||||||
this.url === url &&
|
this.url === url &&
|
||||||
this.type === type;
|
this.type === type;
|
||||||
if ( otherOwn && !thisOwn ) {
|
if ( otherOwn && !thisOwn || other.r !== this.r ) {
|
||||||
this.setRule(context, url, type, other.r);
|
this.setRule(context, url, type, other.r);
|
||||||
this.changed = true;
|
this.changed = true;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user