Browse Source

bits in notifications

activeAddress
Gabriel Bazán 9 years ago
parent
commit
71f06170bf
  1. 4
      lib/pushnotificationsservice.js

4
lib/pushnotificationsservice.js

@ -78,7 +78,7 @@ PushNotificationsService.prototype.sendPushNotifications = function(notification
"collapseKey": "optional", "collapseKey": "optional",
"data": { "data": {
"title": "New incoming transaction", "title": "New incoming transaction",
"message": notification.data.amount + " bits" "message": notification.data.amount / 100 + " bits"
} }
}; };
} }
@ -89,7 +89,7 @@ PushNotificationsService.prototype.sendPushNotifications = function(notification
"collapseKey": "optional", "collapseKey": "optional",
"data": { "data": {
"title": "New outgoing transaction", "title": "New outgoing transaction",
"message": notification.data.amount + " bits" "message": notification.data.amount / 100 + " bits"
} }
}; };
} }

Loading…
Cancel
Save