PLT-3593 fixing issue of removing from team DM list (#3857)

Этот коммит содержится в:
Corey Hulen
2016-08-22 16:39:05 -08:00
коммит произвёл Joram Wilander
родитель 05f8d138f4
Коммит e1fdc63f28
6 изменённых файлов: 37 добавлений и 11 удалений

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

@@ -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');