From 4772f5a2d95267ca5904a1ad0fd008f779c8f4e9 Mon Sep 17 00:00:00 2001 From: Takumi Akimoto Date: Sat, 2 May 2026 18:06:14 +0900 Subject: [PATCH] Ignore replies --- service/jestream.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/service/jestream.ts b/service/jestream.ts index be9a329..68d2e62 100644 --- a/service/jestream.ts +++ b/service/jestream.ts @@ -27,8 +27,8 @@ export class JetstreamService { cursor: opts.cursor, }) this.jetstream.onCreate("app.bsky.feed.post", async (event) => { - if (event.commit.record.embed) { - // Ignore posts with embed for now + if (event.commit.record.embed || event.commit.record.reply?.parent) { + // Ignore replies posts with embed for now return } -- 2.51.2