1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-19 05:22:13 +03:00

unbreak tests

This commit is contained in:
Matthew Hodgson
2017-10-24 23:58:54 +01:00
parent 26e8b2c1b3
commit 59b2189909

View File

@@ -187,7 +187,7 @@ export default {
syncedSettings = this.getSyncedSettings(); syncedSettings = this.getSyncedSettings();
} }
if (!syncedSettings || !syncedSettings.theme) { if (!syncedSettings || !syncedSettings.theme) {
theme = SdkConfig.get().default_theme || 'light'; theme = (SdkConfig.get() ? SdkConfig.get().default_theme : undefined) || 'light';
} }
else { else {
theme = syncedSettings.theme; theme = syncedSettings.theme;