summaryrefslogtreecommitdiffstats
path: root/app/notification.go
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2018-02-12 12:56:46 -0500
committerHarrison Healey <harrisonmhealey@gmail.com>2018-02-13 09:57:23 -0500
commit3fef21e350737c235e6dfc2d9f35311d65290c3e (patch)
treec9dffab5215f785534b948513f7b335bec07c945 /app/notification.go
parentc1b49f8b77e0e75afcc6cf4dc0f1c36569824151 (diff)
downloadchat-3fef21e350737c235e6dfc2d9f35311d65290c3e.tar.gz
chat-3fef21e350737c235e6dfc2d9f35311d65290c3e.tar.bz2
chat-3fef21e350737c235e6dfc2d9f35311d65290c3e.zip
ICU-753 Added unit tests for messages with only push notifications
Diffstat (limited to 'app/notification.go')
-rw-r--r--app/notification.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/notification.go b/app/notification.go
index 83debe584..8d8e72cf9 100644
--- a/app/notification.go
+++ b/app/notification.go
@@ -656,7 +656,7 @@ func (a *App) getPushNotificationMessage(postMessage string, wasMentioned bool,
}
// If the post only has images then push an appropriate message
- if len(message) == 0 && hasFiles {
+ if len(postMessage) == 0 && hasFiles {
if channelType == model.CHANNEL_DIRECT {
message = senderName + userLocale("api.post.send_notifications_and_forget.push_image_only_dm")
} else {