While in mobile mode notifications are no longer counted for channels set to 'quiet mode' that are not direct mentions.

This commit is contained in:
Reed Garmsen
2015-07-22 09:13:51 -07:00
parent 9dc1f46d6e
commit 8b158bf2cf

View File

@@ -28,7 +28,7 @@ function getCountsStateFromStores() {
} else {
if (channelMember.mention_count > 0) {
count += channelMember.mention_count;
} else if (channel.total_msg_count - channelMember.msg_count > 0) {
} else if (channelMember.notify_level !== "quiet" && channel.total_msg_count - channelMember.msg_count > 0) {
count += 1;
}
}