probably fixed settings saving
This commit is contained in:
parent
afb595d8c0
commit
f490684cfd
@ -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) {
|
static pruneUnused(existing, target, ignoreKeys) {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"manifest_version": 2,
|
"manifest_version": 2,
|
||||||
"name": "Ultrawidify",
|
"name": "Ultrawidify",
|
||||||
"version": "3.2.0-a2",
|
"version": "3.2.0-a3",
|
||||||
"applications": {
|
"applications": {
|
||||||
"gecko": {
|
"gecko": {
|
||||||
"id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}"
|
"id": "{cf02b1a7-a01a-4e37-a609-516a283f1ed3}"
|
||||||
|
Loading…
Reference in New Issue
Block a user