summaryrefslogtreecommitdiffstats
path: root/app/notification.go
diff options
context:
space:
mode:
authorElias Nahum <nahumhbl@gmail.com>2018-08-02 09:40:46 -0400
committerHarrison Healey <harrisonmhealey@gmail.com>2018-08-02 09:40:46 -0400
commitb728b16f9083bf5c71e9c27ad074823e8e454b04 (patch)
tree1f241fe5d61bbde88017c2b2241b2a2153a02e6f /app/notification.go
parentc8013d4982c46e09b09a083b72baee2f5c0d77b0 (diff)
downloadchat-b728b16f9083bf5c71e9c27ad074823e8e454b04.tar.gz
chat-b728b16f9083bf5c71e9c27ad074823e8e454b04.tar.bz2
chat-b728b16f9083bf5c71e9c27ad074823e8e454b04.zip
send channel wide push notification type when at-here is used (#9209)
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 3a6d4696d..5d31c2739 100644
--- a/app/notification.go
+++ b/app/notification.go
@@ -312,7 +312,7 @@ func (a *App) SendNotifications(post *model.Post, team *model.Team, channel *mod
sender,
senderName,
mentionedUserIds[id],
- (channelNotification || allNotification),
+ (channelNotification || hereNotification || allNotification),
replyToThreadType,
)
}