Fixes error codes against Insight

This commit is contained in:
Esteban Ordano 2014-10-31 11:24:16 -03:00
parent 9788235003
commit 5f035a9680
4 changed files with 9 additions and 3 deletions

View File

@ -37,6 +37,9 @@ InsightStorage.prototype.getItem = function(name, callback) {
if (err) {
return callback('Connection error');
}
if (response.statusCode === 403) {
return callback('PNOTFOUND: Profile not found');
}
if (response.statusCode !== 200) {
return callback('Connection error');
}
@ -61,6 +64,9 @@ InsightStorage.prototype.setItem = function(name, value, callback) {
if (err) {
return callback('Connection error');
}
if (response.statusCode === 409) {
return callback('Invalid username or password');
}
if (response.statusCode !== 200) {
return callback('Unable to store data on insight');
}

View File

@ -11,7 +11,7 @@ angular.module('copayApp.services')
copay.Wallet.checkIfExistsAny({
pluginManager: pluginManager,
}, function(anyWallet) {
scope.retreiving = false;
scope.loading = false;
scope.anyProfile = anyProfile ? true : false;
scope.anyWallet = anyWallet ? true : false;

View File

@ -1,5 +1,5 @@
<div class="createProfile" ng-controller="CreateProfileController">
<div data-alert class="loading-screen" ng-show="retreiving">
<div data-alert class="loading-screen" ng-show="loading">
<i class="size-60 fi-bitcoin-circle icon-rotate spinner"></i>
<span translate>Retreiving information from storage...</span>
</div>

View File

@ -1,6 +1,6 @@
<div class="home" ng-controller="HomeController">
<div data-alert class="loading-screen" ng-show="retreiving">
<div data-alert class="loading-screen" ng-show="loading">
<i class="size-60 fi-bitcoin-circle icon-rotate spinner"></i>
<span translate>Retreiving information from storage...</span>
</div>