clarify "unknown activity type" logging in ApInboxService.undo

This commit is contained in:
Hazelnoot 2024-11-03 12:19:10 -05:00
parent f115116454
commit f4ec837d6e

View file

@ -687,7 +687,7 @@ export class ApInboxService {
if (isAnnounce(object)) return await this.undoAnnounce(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