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