From 42050d4142619e45350eadce94085629d1f08779 Mon Sep 17 00:00:00 2001 From: Javier Date: Mon, 25 Jan 2016 11:50:08 -0300 Subject: [PATCH] fix wording --- src/js/services/pushNotificationsService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/services/pushNotificationsService.js b/src/js/services/pushNotificationsService.js index 8dc7a9c53..a9141a564 100644 --- a/src/js/services/pushNotificationsService.js +++ b/src/js/services/pushNotificationsService.js @@ -60,7 +60,7 @@ angular.module('copayApp.services') lodash.forEach(walletsClients, function(walletClient) { root.unsubscribe(walletClient, function(err) { - if (err) $log.warn('Subscription error: ' + err.code); + if (err) $log.warn('Unsubscription error: ' + err.message); else $log.debug('Unsubscribed from push notifications service'); }); });