From 72564b7db6d2b704932b233354c4f46827e1e690 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Mon, 29 Jun 2020 22:59:27 -0600 Subject: [PATCH] Fix theme getter --- core/user_config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/user_config.js b/core/user_config.js index ca3b20ff..4ccd7017 100644 --- a/core/user_config.js +++ b/core/user_config.js @@ -171,7 +171,7 @@ exports.getModule = class UserConfigModule extends MenuModule { }, function prepareAvailableThemes(callback) { self.availThemeInfo = _.sortBy([...theme.getAvailableThemes()].map(entry => { - const theme = entry[1]; + const theme = entry[1].get(); return { themeId : theme.info.themeId, name : theme.info.name,