From 1d961b1632d7cac5574f48f447755fbeddbdfa4b Mon Sep 17 00:00:00 2001 From: Elias Nahum Date: Wed, 6 Jun 2018 12:02:22 -0400 Subject: Fix push notification styling backwards compatibility (#8913) --- app/notification.go | 1 + model/push_notification.go | 2 ++ 2 files changed, 3 insertions(+) diff --git a/app/notification.go b/app/notification.go index 741dadd9a..a3c1857d5 100644 --- a/app/notification.go +++ b/app/notification.go @@ -722,6 +722,7 @@ func (a *App) sendPushNotification(post *model.Post, user *model.User, channel * msg.Badge = int(badge.Data.(int64)) } + msg.Version = model.PUSH_MESSAGE_V2 msg.Type = model.PUSH_TYPE_MESSAGE msg.TeamId = channel.TeamId msg.ChannelId = channel.Id diff --git a/model/push_notification.go b/model/push_notification.go index 0d7ba77ac..5268a98f8 100644 --- a/model/push_notification.go +++ b/model/push_notification.go @@ -17,6 +17,7 @@ const ( PUSH_TYPE_MESSAGE = "message" PUSH_TYPE_CLEAR = "clear" + PUSH_MESSAGE_V2 = "v2" // The category is set to handle a set of interactive Actions // with the push notifications @@ -44,6 +45,7 @@ type PushNotification struct { OverrideUsername string `json:"override_username"` OverrideIconUrl string `json:"override_icon_url"` FromWebhook string `json:"from_webhook"` + Version string `json:"version"` } func (me *PushNotification) ToJson() string { -- cgit v1.2.3-1-g7c22