ignore domain config load error if base config loaded
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
parent
88c2158474
commit
8fada2731b
1 changed files with 4 additions and 1 deletions
|
@ -264,7 +264,10 @@ async function loadApp() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
configError = e;
|
// if base config loaded we can ignore this error
|
||||||
|
if (!configError) {
|
||||||
|
configError = e;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// XXX: We call this twice, once here and once in MatrixChat as a prop. We call it here to ensure
|
// XXX: We call this twice, once here and once in MatrixChat as a prop. We call it here to ensure
|
||||||
|
|
Loading…
Add table
Reference in a new issue