From b1dcd222abdd92394eaee02de8161b15a7477aec Mon Sep 17 00:00:00 2001 From: Dessalines Date: Tue, 21 Feb 2023 15:52:34 -0500 Subject: [PATCH] Check to make sure post is correct. Fixes #934 (#949) --- src/shared/components/post/post.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/shared/components/post/post.tsx b/src/shared/components/post/post.tsx index 72a5428..2f8a208 100644 --- a/src/shared/components/post/post.tsx +++ b/src/shared/components/post/post.tsx @@ -651,6 +651,7 @@ export class Post extends Component { data.recipient_ids.length == 0 && !creatorBlocked && postRes && + data.comment_view.post.id == postRes.post_view.post.id && commentsRes ) { commentsRes.comments.unshift(data.comment_view); -- 2.44.1