1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-04 10:09:38 +02:00

Fix set for Firefox & Safari (don't set non-own properties in for..in loop)

This commit is contained in:
Chris 2015-01-18 11:50:20 -07:00
parent ab99683454
commit 5aafafd50d
2 changed files with 6 additions and 0 deletions

View File

@ -195,6 +195,9 @@ vAPI.storage = {
var key, values = [], placeholders = []; var key, values = [], placeholders = [];
for ( key in details ) { for ( key in details ) {
if ( !details.hasOwnProperty(key) ) {
continue;
}
values.push(key); values.push(key);
values.push(JSON.stringify(details[key])); values.push(JSON.stringify(details[key]));
placeholders.push('?, ?'); placeholders.push('?, ?');

View File

@ -126,6 +126,9 @@ vAPI.storage = {
set: function(details, callback) { set: function(details, callback) {
for ( var key in details ) { for ( var key in details ) {
if ( !details.hasOwnProperty(key) ) {
continue;
}
this._storage.setItem(key, JSON.stringify(details[key])); this._storage.setItem(key, JSON.stringify(details[key]));
} }