summaryrefslogtreecommitdiffstats
path: root/webapp/utils/utils.jsx
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-03-04 12:58:37 -0500
committerGeorge Goldberg <george@gberg.me>2017-03-04 17:58:37 +0000
commit615d116c45923ad4efc4170d150002c599a48fd9 (patch)
tree71981a43ac4523157ef964ed319f6725f39a7a66 /webapp/utils/utils.jsx
parent163f591b7bad960ff61ad4eb69589ee2aec5d8e1 (diff)
downloadchat-615d116c45923ad4efc4170d150002c599a48fd9.tar.gz
chat-615d116c45923ad4efc4170d150002c599a48fd9.tar.bz2
chat-615d116c45923ad4efc4170d150002c599a48fd9.zip
Fix desktop notification click handler for existing/new GMs (#5633)
Diffstat (limited to 'webapp/utils/utils.jsx')
-rw-r--r--webapp/utils/utils.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/utils/utils.jsx b/webapp/utils/utils.jsx
index 7573eb887..384cea752 100644
--- a/webapp/utils/utils.jsx
+++ b/webapp/utils/utils.jsx
@@ -104,7 +104,7 @@ export function notifyMe(title, body, channel, teamId, duration, silent) {
var notification = new Notification(title, {body, tag: body, icon: icon50, requireInteraction: notificationDuration === 0, silent});
notification.onclick = () => {
window.focus();
- if (channel && channel.type === Constants.DM_CHANNEL) {
+ if (channel && (channel.type === Constants.DM_CHANNEL || channel.type === Constants.GM_CHANNEL)) {
browserHistory.push(TeamStore.getCurrentTeamUrl() + '/channels/' + channel.name);
} else if (channel) {
browserHistory.push(TeamStore.getTeamUrl(teamId) + '/channels/' + channel.name);