fix for user presets existing preventing cider from starting
This commit is contained in:
parent
1fa02ad99b
commit
ef4853cfc5
3 changed files with 5 additions and 0 deletions
|
@ -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`
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue