catch error fix
This commit is contained in:
parent
de32460fd7
commit
be39986e24
1 changed files with 1 additions and 1 deletions
|
|
@ -31,7 +31,7 @@ angular.module('copayApp.services').factory('bannerService', function ($http, $l
|
||||||
banners = response.data;
|
banners = response.data;
|
||||||
return cb(true);
|
return cb(true);
|
||||||
}, function (error) {
|
}, function (error) {
|
||||||
$log.error('Get banner settings: ERROR ' + response.statusText);
|
$log.error('Get banner settings: ERROR ' + error.statusText);
|
||||||
return cb(false);
|
return cb(false);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue