From 015e81c94f08f6ae0687f20fb83afa70de1d9954 Mon Sep 17 00:00:00 2001 From: Stefan Yohansson Date: Fri, 25 Sep 2015 11:51:58 -0300 Subject: [PATCH] FS-8205 [verto_communicator] fix auto call config provision --- .../src/vertoService/services/configService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html5/verto/verto_communicator/src/vertoService/services/configService.js b/html5/verto/verto_communicator/src/vertoService/services/configService.js index 2793cdb91d..924488f733 100644 --- a/html5/verto/verto_communicator/src/vertoService/services/configService.js +++ b/html5/verto/verto_communicator/src/vertoService/services/configService.js @@ -62,7 +62,7 @@ vertoService.service('config', ['$rootScope', '$http', '$location', 'storage', ' verto.data.autologin_done = true; } - if(storage.data.name.length && storage.data.email.length && storage.data.login.length && storage.data.password.length) { + if(verto.data.autologin && storage.data.name.length && storage.data.email.length && storage.data.login.length && storage.data.password.length) { $rootScope.$emit('config.http.success', data); }; return response;