mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-11 17:41:03 +01:00
Make element picker mind that network filters are case-insensitive
Related discussion: - https://github.com/easylist/easylist/pull/4950#issuecomment-590064744
This commit is contained in:
parent
c13060aadc
commit
7634604aa8
1 changed files with 1 additions and 1 deletions
|
@ -738,7 +738,7 @@ const filterToDOMInterface = (( ) => {
|
||||||
}
|
}
|
||||||
let reFilter = null;
|
let reFilter = null;
|
||||||
try {
|
try {
|
||||||
reFilter = new RegExp(reStr);
|
reFilter = new RegExp(reStr, 'i');
|
||||||
}
|
}
|
||||||
catch (e) {
|
catch (e) {
|
||||||
return out;
|
return out;
|
||||||
|
|
Loading…
Reference in a new issue