Revert "Fix continuous reaction fetch in incognito"

This reverts commit ff059c58fd.
This commit is contained in:
infinite-persistence 2021-07-15 22:23:14 +08:00
parent 47b594107a
commit 08548916df
No known key found for this signature in database
GPG key ID: B9C3252EDC3D0AA0

View file

@ -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];
});
}