From 9259792bc9440fdffd20f914a73e642c9cbee5d8 Mon Sep 17 00:00:00 2001 From: coderaiser Date: Thu, 23 Aug 2018 19:57:53 +0300 Subject: [PATCH] fix(config) init: load when configDialog disabled --- client/modules/config.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/client/modules/config.js b/client/modules/config.js index 59dfd5e2..03d68d5b 100644 --- a/client/modules/config.js +++ b/client/modules/config.js @@ -44,6 +44,9 @@ const Config = {}; let Loading = true; module.exports.init = async () => { + if (!CloudCmd.config('configDialog')) + return; + showLoad(); await CloudCmd.View();