unbreak tests

pull/21833/head
Matthew Hodgson 2017-10-24 23:58:54 +01:00
parent 26e8b2c1b3
commit 59b2189909
1 changed files with 1 additions and 1 deletions

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;