|
|
@ -78,7 +78,7 @@ PushNotificationsService.prototype.sendPushNotifications = function(notification |
|
|
|
"collapseKey": "optional", |
|
|
|
"data": { |
|
|
|
"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", |
|
|
|
"data": { |
|
|
|
"title": "New outgoing transaction", |
|
|
|
"message": notification.data.amount + " bits" |
|
|
|
"message": notification.data.amount / 100 + " bits" |
|
|
|
} |
|
|
|
}; |
|
|
|
} |
|
|
|