aboutsummaryrefslogtreecommitdiffstats
path: root/src/js/storage.js
diff options
context:
space:
mode:
authorgorhill <rhill@raymondhill.net>2015-03-02 11:01:21 -0500
committergorhill <rhill@raymondhill.net>2015-03-02 11:01:21 -0500
commitaaddab2023f0da305cc383c515c5c4f3fcaf5ea8 (patch)
tree6c994bd6bf1a9a3f2e80b5040f3c832b89cf5d77 /src/js/storage.js
parent09740463a71bec2b3d689f7a039cabfdedf5608c (diff)
downloaduBlock-aaddab2023f0da305cc383c515c5c4f3fcaf5ea8.zip
uBlock-aaddab2023f0da305cc383c515c5c4f3fcaf5ea8.tar.gz
uBlock-aaddab2023f0da305cc383c515c5c4f3fcaf5ea8.tar.bz2
this fixes #916
Diffstat (limited to 'src/js/storage.js')
-rw-r--r--src/js/storage.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/storage.js b/src/js/storage.js
index f3d3589..beb3ede 100644
--- a/src/js/storage.js
+++ b/src/js/storage.js
@@ -288,7 +288,7 @@
if ( µb.remoteBlacklists.hasOwnProperty(path) ) {
var entry = µb.remoteBlacklists[path];
entry.entryCount = snfe.acceptedCount + cfe.acceptedCount - acceptedCount;
- entry.entryUsedCount = entry.entryCount - snfe.duplicateCount - cfe.duplicateCount + duplicateCount;
+ entry.entryUsedCount = entry.entryCount - (snfe.duplicateCount + cfe.duplicateCount - duplicateCount);
}
};