probably fixed settings saving

This commit is contained in:
Tamius Han 2018-09-22 22:50:32 +02:00
parent afb595d8c0
commit f490684cfd
2 changed files with 11 additions and 1 deletions

View File

@ -32,6 +32,16 @@ class ObjectCopy {
}
}
}
// add the values that would otherwise be deleted back to our object. (We need that so user-defined
// sites don't get forgotten)
for(var k in existing) {
if (! out[k]) {
out[k] = existing[k];
}
}
return out;
}
static pruneUnused(existing, target, ignoreKeys) {

View File

@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "Ultrawidify",
"version": "3.2.0-a2",
"version": "3.2.0-a3",
"applications": {
"gecko": {
"id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}"