From 08548916df69d821376564fd6729ae8adc0931d1 Mon Sep 17 00:00:00 2001 From: infinite-persistence Date: Thu, 15 Jul 2021 22:23:14 +0800 Subject: [PATCH] Revert "Fix continuous reaction fetch in incognito" This reverts commit ff059c58fd88454c8eaa9cba89300aebad6f288a. --- ui/component/commentsList/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/commentsList/view.jsx b/ui/component/commentsList/view.jsx index cd3d1e6b4..a4714bca8 100644 --- a/ui/component/commentsList/view.jsx +++ b/ui/component/commentsList/view.jsx @@ -130,7 +130,7 @@ function CommentList(props: Props) { } else { idsForReactionFetch = allCommentIds.filter((commentId) => { const key = activeChannelId ? `${commentId}:${activeChannelId}` : commentId; - return !othersReactsById[key] || (activeChannelId && !myReactsByCommentId[key]); + return !othersReactsById[key] || !myReactsByCommentId[key]; }); }