From 271287e6f3d23b96f2ceddec2bff88556c8db6ae Mon Sep 17 00:00:00 2001 From: Cynthia Foxwell Date: Fri, 14 Feb 2025 11:25:28 -0700 Subject: [PATCH] Parse reply-mixer-conversation replies --- src/parser.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser.nim b/src/parser.nim index ed40d09..e306388 100644 --- a/src/parser.nim +++ b/src/parser.nim @@ -530,7 +530,7 @@ proc parseGraphConversation*(js: JsonNode; tweetId: string): Conversation = result.tweet = tweet else: result.before.content.add tweet - elif entryId.startsWith("conversationthread"): + elif entryId.startsWith("conversationthread") or entryId.startswith("reply-mixer-conversation"): let (thread, self) = parseGraphThread(e) if self: result.after = thread