diff --git a/server/core/helpers/actors.ts b/server/core/helpers/actors.ts index 5e92fc008..f811ac25d 100644 --- a/server/core/helpers/actors.ts +++ b/server/core/helpers/actors.ts @@ -12,7 +12,7 @@ export function handlesToNameAndHost (handles: string[]) { return handles.map(h => handleToNameAndHost(h)) } -const accountType = new Set([ 'Person', 'Application', 'Group', 'Service', 'Organization' ]) +const accountType = new Set([ 'Person', 'Application', 'Service', 'Organization' ]) export function isAccountActor (type: ActivityPubActorType) { return accountType.has(type) }