1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 15:32:28 +02:00

Merge pull request #537 from chrisaljoudi/master

Fix `set` for Firefox & Safari (skip non-own properties in for..in loop)
This commit is contained in:
Raymond Hill 2015-01-18 14:00:32 -05:00
commit e8fb45d54f
2 changed files with 6 additions and 0 deletions

View File

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

View File

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