summaryrefslogtreecommitdiffstats
path: root/app/notification.go
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2017-06-28 20:05:34 -0700
committerSaturnino Abril <saturnino.abril@gmail.com>2017-06-29 11:05:34 +0800
commit9e600fcdccabfc55b85c026eda5eedab5bc91152 (patch)
tree5eeef8f2bf720d9919c3241cbe90f60c3f69712c /app/notification.go
parent2a96b7e15ea0a6da2d5397140aff9478945d8828 (diff)
downloadchat-9e600fcdccabfc55b85c026eda5eedab5bc91152.tar.gz
chat-9e600fcdccabfc55b85c026eda5eedab5bc91152.tar.bz2
chat-9e600fcdccabfc55b85c026eda5eedab5bc91152.zip
PLT-3901 fixing push notificaiton with images message (#6783)
Diffstat (limited to 'app/notification.go')
-rw-r--r--app/notification.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/app/notification.go b/app/notification.go
index 2b9c9bcff..d2eb44b3a 100644
--- a/app/notification.go
+++ b/app/notification.go
@@ -515,7 +515,11 @@ func sendPushNotification(post *model.Post, user *model.User, channel *model.Cha
// If the post only has images then push an appropriate message
if len(post.Message) == 0 && post.FileIds != nil && len(post.FileIds) > 0 {
- msg.Message = senderName + userLocale("api.post.send_notifications_and_forget.push_image_only") + channelName
+ if channel.Type == model.CHANNEL_DIRECT {
+ msg.Message = senderName + userLocale("api.post.send_notifications_and_forget.push_image_only_dm")
+ } else {
+ msg.Message = senderName + userLocale("api.post.send_notifications_and_forget.push_image_only") + channelName
+ }
}
l4g.Debug("Sending push notification for user %v with msg of '%v'", user.Id, msg.Message)