From 48c36eb5d336a85a4c440a2f0b29b160a37b35ab Mon Sep 17 00:00:00 2001 From: coderaiser Date: Tue, 24 Apr 2018 10:31:03 +0300 Subject: [PATCH] fix(client) when password changed console and terminal can not authenticate when auth enabled --- client/client.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/client/client.js b/client/client.js index 6422203c..0bb2735c 100644 --- a/client/client.js +++ b/client/client.js @@ -212,6 +212,10 @@ function CloudCmdProto(Util, DOM) { * should be called from config.js only * after successful update on server */ + + if (key === 'password') + return; + config[key] = value; };