1
0

fix
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 5s

This commit is contained in:
syui 2024-04-13 08:51:22 +09:00
parent bf8cf0bec5
commit 70b072505f
Signed by: syui
GPG Key ID: 5417CFEBAD92DF56

View File

@ -20,8 +20,8 @@ export class FirehoseSubscription extends FirehoseSubscriptionBase {
const postsToCreate = ops.posts.creates const postsToCreate = ops.posts.creates
.filter((create) => { .filter((create) => {
// only alf-related posts // only alf-related posts
return create.record.text.match('^/[a-z]') || create.record.text.match('^@ai '); return create.record.text.match('^/[a-z]') || create.record.text.match('^@ai ') || create.record.text.match('^ai ');
//return create.record.text.toLowerCase().includes('alf') //return create.record.text.toLowerCase().includes('alf')
}) })
.map((create) => { .map((create) => {
// map alf-related posts to a db row // map alf-related posts to a db row