summaryrefslogtreecommitdiffstats
path: root/webapp/actions/user_actions.jsx
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2016-08-22 16:39:05 -0800
committerJoram Wilander <jwawilander@gmail.com>2016-08-22 20:39:05 -0400
commite1fdc63f28707a180578ff97b08d29d005f07010 (patch)
treea809eeeaf9c2d0cd330d282955582f36c9e59a77 /webapp/actions/user_actions.jsx
parent05f8d138f434141b2a23d29cabaebdbd0482d879 (diff)
downloadchat-e1fdc63f28707a180578ff97b08d29d005f07010.tar.gz
chat-e1fdc63f28707a180578ff97b08d29d005f07010.tar.bz2
chat-e1fdc63f28707a180578ff97b08d29d005f07010.zip
PLT-3593 fixing issue of removing from team DM list (#3857)
Diffstat (limited to 'webapp/actions/user_actions.jsx')
-rw-r--r--webapp/actions/user_actions.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/actions/user_actions.jsx b/webapp/actions/user_actions.jsx
index 054bb017f..ede1ebb7a 100644
--- a/webapp/actions/user_actions.jsx
+++ b/webapp/actions/user_actions.jsx
@@ -30,8 +30,8 @@ export function switchFromLdapToEmail(email, password, ldapPassword, onSuccess,
}
export function getMoreDmList() {
- AsyncClient.getProfilesForDirectMessageList();
AsyncClient.getTeamMembers(TeamStore.getCurrentId());
+ AsyncClient.getProfilesForDirectMessageList();
}
export function saveTheme(teamId, theme, onSuccess, onError) {