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

Этот коммит содержится в:
Reed Garmsen
2015-07-22 09:13:51 -07:00
родитель 9dc1f46d6e
Коммит 8b158bf2cf

Просмотреть файл

@@ -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;
}
}