clarify "unknown activity type" logging in ApInboxService.undo

This commit is contained in:
Hazelnoot 2024-11-03 12:19:10 -05:00 committed by fly_mc
parent 803398e2c8
commit c67f23d2c2

View file

@ -680,7 +680,7 @@ export class ApInboxService {
if (isAnnounce(object)) return await this.undoAnnounce(actor, object); if (isAnnounce(object)) return await this.undoAnnounce(actor, object);
if (isAccept(object)) return await this.undoAccept(actor, object); if (isAccept(object)) return await this.undoAccept(actor, object);
return `skip: unknown object type ${getApType(object)}`; return `skip: unknown activity type ${getApType(object)}`;
} }
@bindThis @bindThis