1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-04 18:19:38 +02:00
This commit is contained in:
gorhill 2014-07-13 12:57:20 -04:00
parent 6022c4a480
commit 17500c6d27

View File

@ -103,7 +103,7 @@
if ( details.error ) {
return;
}
if ( details.content.indexOf(content.trim()) === -1 ) {
if ( details.content.indexOf(content.trim()) !== -1 ) {
return;
}
µBlock.saveUserFilters(details.content + '\n' + content, onSaved);