From 8fada2731b1c9977da9e68e9298f0ac5e8554fbd Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Wed, 6 Jun 2018 12:43:09 +0100 Subject: [PATCH] ignore domain config load error if base config loaded Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- src/vector/index.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/vector/index.js b/src/vector/index.js index 6aa628e017..d5bd71161b 100644 --- a/src/vector/index.js +++ b/src/vector/index.js @@ -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