From f779c834faf6695ec7c695c48f5563022a2cf375 Mon Sep 17 00:00:00 2001 From: Doug Hoyte Date: Thu, 19 Dec 2024 23:34:15 -0500 Subject: [PATCH] bugfix --- src/apps/web/WebData.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/web/WebData.h b/src/apps/web/WebData.h index da2fbc4..7675fd8 100644 --- a/src/apps/web/WebData.h +++ b/src/apps/web/WebData.h @@ -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)); } }