fix for user presets existing preventing cider from starting

This commit is contained in:
booploops 2022-01-28 00:33:07 -08:00
parent 1fa02ad99b
commit ef4853cfc5
3 changed files with 5 additions and 0 deletions

View file

@ -132,6 +132,9 @@ export class ConfigStore {
if (key.includes('migrations')) {
continue;
}
if(source[key] instanceof Array) {
continue
}
if (source[key] instanceof Object) Object.assign(source[key], this.mergeStore(target[key], source[key]))
}
// Join `target` and modified `source`