From 8b10dd3e3d5eb4c79d5099c88f3ca368cbfa4d98 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Sat, 25 Aug 2018 13:32:14 +0300 Subject: [PATCH] fix(konsole) try to load console.js when console is disabled --- client/modules/konsole.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/modules/konsole.js b/client/modules/konsole.js index 60b44d9a..d68437ba 100644 --- a/client/modules/konsole.js +++ b/client/modules/konsole.js @@ -30,6 +30,9 @@ let Element; let Loaded; module.exports.init = async () => { + if (!config('console')) + return; + Images.show.load('top'); await CloudCmd.View();