summaryrefslogtreecommitdiffstats
path: root/webapp/stores
diff options
context:
space:
mode:
authorDavid Lu <david.lu@hotmail.com>2016-06-29 08:46:10 -0400
committerJoram Wilander <jwawilander@gmail.com>2016-06-29 08:46:10 -0400
commit4c9b48da8f54bc9af83c7e987149be316f5c61f7 (patch)
tree782c42169faefc5b6752db5082e977cbb843a8cd /webapp/stores
parentfccacbbf964dd95a025b02555b29f39667a03f0a (diff)
downloadchat-4c9b48da8f54bc9af83c7e987149be316f5c61f7.tar.gz
chat-4c9b48da8f54bc9af83c7e987149be316f5c61f7.tar.bz2
chat-4c9b48da8f54bc9af83c7e987149be316f5c61f7.zip
PLT-3328 Added Title for Direct Message Desktop Notifications (#3438)
* Added title for DM desktop notifications
Diffstat (limited to 'webapp/stores')
-rw-r--r--webapp/stores/notification_store.jsx8
1 files changed, 5 insertions, 3 deletions
diff --git a/webapp/stores/notification_store.jsx b/webapp/stores/notification_store.jsx
index 78f8e56c8..e05d20329 100644
--- a/webapp/stores/notification_store.jsx
+++ b/webapp/stores/notification_store.jsx
@@ -63,10 +63,12 @@ class NotificationStoreClass extends EventEmitter {
}
let title = Utils.localizeMessage('channel_loader.posted', 'Posted');
- if (channel) {
- title = channel.display_name;
- } else if (msgProps.channel_display_name) {
+ if (!channel) {
title = msgProps.channel_display_name;
+ } else if (channel.type === Constants.DM_CHANNEL) {
+ title = Utils.localizeMessage('notification.dm', 'Direct Message');
+ } else {
+ title = channel.display_name;
}
let notifyText = post.message.replace(/\n+/g, ' ');