feat: handle incoming Announce(Delete), closes #13712

This commit is contained in:
Julian Lam
2025-10-16 11:12:00 -04:00
parent fadac6165e
commit 4d5005b972

View File

@@ -321,6 +321,12 @@ inbox.announce = async (req) => {
break;
}
case object.type === 'Delete': {
req.body = object;
await inbox.delete(req);
break;
}
case object.type === 'Create': {
object = object.object;
// falls through