fix: send only the id into actors.assert

This commit is contained in:
Julian Lam
2024-04-10 12:16:35 -04:00
parent c92b5e07a7
commit 465a46f2e6

View File

@@ -70,7 +70,7 @@ inbox.update = async (req) => {
}
case 'Person': {
await activitypub.actors.assert(object, { update: true });
await activitypub.actors.assert(object.id, { update: true });
break;
}
}