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:
Raymond Hill 2020-02-24 09:24:54 -05:00
parent c13060aadc
commit 7634604aa8
No known key found for this signature in database
GPG key ID: 25E1490B761470C2

View file

@ -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;