Ignored posts deleted from channels that we haven't visited

Этот коммит содержится в:
hmhealey
2016-02-25 10:18:48 -05:00
родитель e66520ea47
Коммит 8154995e43

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

@@ -265,6 +265,12 @@ class PostStoreClass extends EventEmitter {
}
deletePost(post) {
const postInfo = this.postsInfo[post.channel_id];
if (!postInfo) {
// the post that has been deleted is in a channel that we haven't seen so just ignore it
return;
}
const postList = this.postsInfo[post.channel_id].postList;
if (isPostListNull(postList)) {