Merge branch 'master' of github.com:gorhill/uBlock

This commit is contained in:
gorhill 2015-03-11 18:26:12 -04:00
commit 2a47057209

View file

@ -158,7 +158,7 @@
result[key] = keys[key];
}
localforage.iterate(function(value, key) {
if(!keys[key]) return;
if(!keys.hasOwnProperty(key)) return;
if(typeof value === "string") {
result[key] = JSON.parse(value);
}