bits in notifications

This commit is contained in:
Gabriel Bazán 2016-01-04 16:38:47 -03:00
parent b7f98bb752
commit 71f06170bf
1 changed files with 2 additions and 2 deletions

View File

@ -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"
}
};
}