From 1d8a058eca40ab4481085907bb5ce60f639bed40 Mon Sep 17 00:00:00 2001 From: syui Date: Sat, 13 Apr 2024 06:51:28 +0900 Subject: [PATCH] fix --- at/feed-generator/src/subscription.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/at/feed-generator/src/subscription.ts b/at/feed-generator/src/subscription.ts index bfec084..a9dbdba 100644 --- a/at/feed-generator/src/subscription.ts +++ b/at/feed-generator/src/subscription.ts @@ -20,7 +20,7 @@ export class FirehoseSubscription extends FirehoseSubscriptionBase { const postsToCreate = ops.posts.creates .filter((create) => { // only alf-related posts - return create.record.text.match('^/[a-z]'); + return create.record.text.match('^/[a-z]') || create.record.text.match('^@ai'); //return create.record.text.toLowerCase().includes('alf') }) .map((create) => {