From f790bcdbc74d878e53de9f22ebaf3ba89cab656a Mon Sep 17 00:00:00 2001 From: =Corey Hulen Date: Tue, 8 Dec 2015 14:10:52 -0800 Subject: [PATCH] Updating the push message --- api/post.go | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/api/post.go b/api/post.go index e1adc1d98c..14dce89e92 100644 --- a/api/post.go +++ b/api/post.go @@ -565,7 +565,11 @@ func sendNotificationsAndForget(c *Context, post *model.Post, team *model.Team, msg.DeviceId = strings.TrimPrefix(session.DeviceId, "apple:") msg.ServerId = utils.CfgDiagnosticId - msg.Message = profileMap[id].FirstName + " mentioned you in " + channel.DisplayName + if channel.Type == model.CHANNEL_DIRECT { + msg.Message = channelName + " send you a direct message" + } else { + msg.Message = profileMap[id].FirstName + " mentioned you in " + channelName + } httpClient := http.Client{} request, _ := http.NewRequest("POST", *utils.Cfg.EmailSettings.PushNotificationServer+"/api/v1/send_push", strings.NewReader(msg.ToJson()))