From a8a0023e386581dce4c95375c3ad90af5e7340c0 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Fri, 15 May 2015 11:07:19 -0300 Subject: [PATCH] ignore history server errors --- src/js/controllers/index.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/js/controllers/index.js b/src/js/controllers/index.js index a77aeb446..c29a1efef 100644 --- a/src/js/controllers/index.js +++ b/src/js/controllers/index.js @@ -255,7 +255,9 @@ angular.module('copayApp.controllers').controller('indexController', function($r self.updatingTxHistory = false; if (err) { $log.debug('TxHistory ERROR:', err); - self.handleError(err); + // We do not should errors here, since history is usually + // fetched AFTER others requests. + //self.handleError(err); self.txHistoryError = true; } else { $log.debug('Wallet Transaction History:', txs);