Fix GMs showing up on refresh after being hidden (#5702)

Этот коммит содержится в:
Joram Wilander
2017-03-09 14:41:03 -05:00
коммит произвёл George Goldberg
родитель 6ff46f3050
Коммит 9c13863f48
3 изменённых файлов: 6 добавлений и 2 удалений

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

@@ -304,7 +304,7 @@ export function loadProfilesForGM() {
if (!isVisible) {
const member = ChannelStore.getMyMember(channel.id);
if (!member || (member.mention_count === 0 && member.msg_count < member.total_msg_count)) {
if (!member || (member.mention_count === 0 && member.msg_count >= channel.total_msg_count)) {
continue;
}