ignore domain config load error if base config loaded

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2018-06-06 12:43:09 +01:00
parent 88c2158474
commit 8fada2731b
No known key found for this signature in database
GPG key ID: 3F879DA5AD802A5E

View file

@ -264,7 +264,10 @@ async function loadApp() {
}
}
} 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