summaryrefslogtreecommitdiffstats
path: root/webapp/actions/user_actions.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/actions/user_actions.jsx')
-rw-r--r--webapp/actions/user_actions.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/actions/user_actions.jsx b/webapp/actions/user_actions.jsx
index 0f6ac3e9f..231b09f11 100644
--- a/webapp/actions/user_actions.jsx
+++ b/webapp/actions/user_actions.jsx
@@ -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;
}
@@ -645,7 +645,7 @@ export function checkMfa(loginId, success, error) {
loginId,
(data) => {
if (success) {
- success(data);
+ success(data && data.mfa_required === 'true');
}
},
(err) => {