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;