fix loadConfig

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
pull/13095/head
Michael Telatynski 2020-04-08 19:36:06 +01:00
parent 7633009ddb
commit 6a5268f09b
1 changed files with 2 additions and 2 deletions

View File

@ -46,12 +46,12 @@ export function preparePlatform() {
}
}
export async function loadConfig(): Promise<Error | void> {
export async function loadConfig() {
// XXX: We call this twice, once here and once in MatrixChat as a prop. We call it here to ensure
// granular settings are loaded correctly and to avoid duplicating the override logic for the theme.
//
// Note: this isn't called twice for some wrappers, like the Jitsi wrapper.
SdkConfig.put(PlatformPeg.get().getConfig() || {});
SdkConfig.put(await PlatformPeg.get().getConfig() || {});
}
export function loadOlm(): Promise<void> {