From eeeb0325fc5c0fb141166125278658f2d53b318f Mon Sep 17 00:00:00 2001 From: dholms Date: Thu, 11 May 2023 12:14:50 -0500 Subject: [PATCH] rm log --- src/subscription.ts | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/subscription.ts b/src/subscription.ts index 0aaf94e..649f7ed 100644 --- a/src/subscription.ts +++ b/src/subscription.ts @@ -8,11 +8,6 @@ export class FirehoseSubscription extends FirehoseSubscriptionBase { async handleEvent(evt: RepoEvent) { if (!isCommit(evt)) return const ops = await getOpsByType(evt) - if (ops.posts.creates.length > 0) { - for (const op of ops.posts.creates) { - console.log(op.record.text) - } - } const postsToDelete = ops.posts.deletes.map((del) => del.uri) const postsToCreate = ops.posts.creates .filter((create) => {