fix: Update activity handling for non-Person actors

This commit is contained in:
Julian Lam
2024-07-09 14:30:03 -04:00
parent bacbfba9bd
commit 5e343a83f8

View File

@@ -106,6 +106,10 @@ inbox.update = async (req) => {
break;
}
case 'Application': // falls through
case 'Group': // falls through
case 'Organization': // falls through
case 'Service': // falls through
case 'Person': {
await activitypub.actors.assert(object.id, { update: true });
break;