From 7f79f3e5114bfd9b4e8dacd18c4aeb7b04abb789 Mon Sep 17 00:00:00 2001 From: Gustavo Cortez Date: Thu, 8 May 2014 10:03:32 -0300 Subject: [PATCH] Fixes: show error message when put a wrong password --- index.html | 2 +- js/controllers/signin.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index ff4392386..78ae0cc80 100644 --- a/index.html +++ b/index.html @@ -147,7 +147,7 @@
- Looking for peers... + Authenticating and Looking for peers...
diff --git a/js/controllers/signin.js b/js/controllers/signin.js index 96febcb62..5971a1ce2 100644 --- a/js/controllers/signin.js +++ b/js/controllers/signin.js @@ -31,6 +31,7 @@ angular.module('copay.signin').controller('SigninController', if (!w) { $scope.loading = false; $rootScope.flashMessage = { message: 'Bad password or connection error', type: 'error'}; + $rootScope.$digest(); return; } controllerUtils.startNetwork(w);