Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
hoytech committed Dec 20, 2024
1 parent 979253d commit 9bca396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/apps/web/WebData.h
Original file line number Diff line number Diff line change
Expand Up @@ -588,7 +588,7 @@ struct EventThread {
if (processedLevIds.contains(e.ev.primaryKeyId)) continue;
if (e.getKind() != 1) continue;

if (!eventCache.contains(e.parent)) {
if (!isFullThreadLoaded || !eventCache.contains(e.parent)) {
ctx.orphanNodes.emplace_back(e.getCreatedAt(), process(id));
}
}
Expand Down

0 comments on commit 9bca396

Please sign in to comment.