mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-05 18:32:30 +01:00
code review: element picker
This commit is contained in:
parent
58ebcd21c3
commit
4aec3404c4
@ -248,7 +248,7 @@ var netFilterFromUnion = (function() {
|
||||
var from = lastNetFilterUnion;
|
||||
|
||||
// Reset reference filter when dealing with unrelated URLs
|
||||
if ( from === '' && a.host !== lastNetFilterHostname ) {
|
||||
if ( from === '' || a.host !== lastNetFilterHostname ) {
|
||||
lastNetFilterHostname = a.host;
|
||||
lastNetFilterUnion = to;
|
||||
localMessager.send({
|
||||
@ -289,7 +289,7 @@ var netFilterFromUnion = (function() {
|
||||
}
|
||||
}
|
||||
from = fromTokens.join('').replace(/\*\*+/g, '*');
|
||||
if ( from !== '/*' ) {
|
||||
if ( from !== '/*' && from !== to ) {
|
||||
out.push('||' + lastNetFilterHostname + from);
|
||||
} else {
|
||||
from = to;
|
||||
|
Loading…
Reference in New Issue
Block a user