From eca5e04cc428ef8da75e6ef065c85527890822cc Mon Sep 17 00:00:00 2001 From: Pedro Pombeiro Date: Mon, 26 Feb 2018 18:17:42 +0100 Subject: [PATCH] Replace `ping` notification payload with `You have a new message` --- geth/notifications/push/fcm/notification.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geth/notifications/push/fcm/notification.go b/geth/notifications/push/fcm/notification.go index 99fdcd1b6..c36283f14 100644 --- a/geth/notifications/push/fcm/notification.go +++ b/geth/notifications/push/fcm/notification.go @@ -31,10 +31,10 @@ func (n *Notification) Send(body string, payload fcm.NotificationPayload, tokens } if payload.Title == "" { - payload.Title = "Status - new message" + payload.Title = "Status" } if payload.Body == "" { - payload.Body = "ping" + payload.Body = "You have a new message" } fmt.Println(payload.Title, payload.Body)