From: Stefan Yohansson Date: Fri, 25 Sep 2015 14:51:58 +0000 (-0300) Subject: FS-8205 [verto_communicator] fix auto call config provision X-Git-Tag: v1.6.3~1^2~114 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=015e81c94f08f6ae0687f20fb83afa70de1d9954;p=thirdparty%2Ffreeswitch.git FS-8205 [verto_communicator] fix auto call config provision --- 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;