summaryrefslogtreecommitdiffstats
path: root/webapp/utils
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/utils
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/utils')
-rw-r--r--webapp/utils/async_client.jsx8
1 files changed, 0 insertions, 8 deletions
diff --git a/webapp/utils/async_client.jsx b/webapp/utils/async_client.jsx
index 3941442b1..74064169f 100644
--- a/webapp/utils/async_client.jsx
+++ b/webapp/utils/async_client.jsx
@@ -584,8 +584,6 @@ export function getPostsPage(id, maxPosts) {
checkLatest: true,
post_list: data
});
-
- getProfiles();
},
(err) => {
dispatchError(err, 'getPostsPage');
@@ -632,8 +630,6 @@ export function getPosts(id) {
numRequested: 0,
post_list: data
});
-
- getProfiles();
},
(err) => {
dispatchError(err, 'getPosts');
@@ -668,8 +664,6 @@ export function getPostsBefore(postId, offset, numPost, isPost) {
post_list: data,
isPost
});
-
- getProfiles();
},
(err) => {
dispatchError(err, 'getPostsBefore');
@@ -704,8 +698,6 @@ export function getPostsAfter(postId, offset, numPost, isPost) {
post_list: data,
isPost
});
-
- getProfiles();
},
(err) => {
dispatchError(err, 'getPostsAfter');