This commit is contained in:
Matias Alejo Garcia 2015-04-24 14:46:09 -03:00
parent 968c7cc369
commit e2f0515c9e
1 changed files with 1 additions and 1 deletions

View File

@ -575,7 +575,7 @@ angular.module('copayApp.controllers').controller('indexController', function($r
} else {
var msg = 'Error at Wallet Service: ';
if (err.message) msg = msg + err.message;
else (err.error) msg = msg + err.error;
else if (err.error) msg = msg + err.error;
else msg = msg + err;
self.clientError(msg);
}