diff --git a/src/remote/activitypub/models/person.ts b/src/remote/activitypub/models/person.ts index 465ac6150..873bdc91e 100644 --- a/src/remote/activitypub/models/person.ts +++ b/src/remote/activitypub/models/person.ts @@ -143,7 +143,7 @@ export async function createPerson(uri: string, resolver?: Resolver): Promise normalizeForSearch(tag)).splice(0, 32); - const isBot = object.type === 'Service'; + const isBot = object.type === 'Service' || object.type === 'Application'; const bday = person['vcard:bday']?.match(/^\d{4}-\d{2}-\d{2}/);