mirror of https://github.com/gorhill/uBlock.git
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
|
@ -738,7 +738,7 @@ const filterToDOMInterface = (( ) => {
|
|||
}
|
||||
let reFilter = null;
|
||||
try {
|
||||
reFilter = new RegExp(reStr);
|
||||
reFilter = new RegExp(reStr, 'i');
|
||||
}
|
||||
catch (e) {
|
||||
return out;
|
||||
|
|
Loading…
Reference in New Issue