summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--webapp/stores/user_store.jsx5
1 files changed, 1 insertions, 4 deletions
diff --git a/webapp/stores/user_store.jsx b/webapp/stores/user_store.jsx
index 8936b1e49..99550f3ce 100644
--- a/webapp/stores/user_store.jsx
+++ b/webapp/stores/user_store.jsx
@@ -281,12 +281,9 @@ class UserStoreClass extends EventEmitter {
keys.push(user.first_name);
}
- if (user.notify_props.all === 'true') {
- keys.push('@all');
- }
-
if (user.notify_props.channel === 'true') {
keys.push('@channel');
+ keys.push('@all');
}
return keys;