Fix continuous reaction fetch in incognito
myReactions will never be filled in incognito. Also, it's probably enough to just check othersReactions, but for now, still do both when logged in.
This commit is contained in:
parent
d612b86a8c
commit
ff059c58fd
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ function CommentList(props: Props) {
|
|||
} else {
|
||||
idsForReactionFetch = allCommentIds.filter((commentId) => {
|
||||
const key = activeChannelId ? `${commentId}:${activeChannelId}` : commentId;
|
||||
return !othersReactsById[key] || !myReactsByCommentId[key];
|
||||
return !othersReactsById[key] || (activeChannelId && !myReactsByCommentId[key]);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue