diff --git a/html5/verto/verto_communicator/src/vertoService/services/configService.js b/html5/verto/verto_communicator/src/vertoService/services/configService.js
index 0f2f4fcce0..58fa7ccbbe 100644
--- a/html5/verto/verto_communicator/src/vertoService/services/configService.js
+++ b/html5/verto/verto_communicator/src/vertoService/services/configService.js
@@ -62,7 +62,9 @@ vertoService.service('config', ['$rootScope', '$http', '$location', 'storage', '
verto.data.autologin_done = true;
}
- $rootScope.$emit('config.http.success', data);
+ if(verto.data.login && verto.data.password && verto.data.name && verto.data.email) {
+ $rootScope.$emit('config.http.success', data);
+ }
return response;
}, function(response) {
$rootScope.$emit('config.http.error', response);