Use generic AvatarLink() function

This commit is contained in:
2018-03-05 17:49:24 +01:00
parent b46110a913
commit 5fba65ddc0
6 changed files with 9 additions and 9 deletions

View File

@ -88,7 +88,7 @@ func Success(ctx *aero.Context) string {
admin.SendNotification(&arn.PushNotification{
Title: user.Nick + " bought " + strconv.Itoa(payment.Gems()) + " gems",
Message: user.Nick + " paid " + payment.Amount + " " + payment.Currency + " making his new balance " + strconv.Itoa(user.Balance),
Icon: user.LargeAvatar(),
Icon: user.AvatarLink("large"),
Link: "https://" + ctx.App.Config.Domain + "/api/paypalpayment/" + payment.ID,
Type: arn.NotificationTypePurchase,
})