mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-27 15:16:43 -06:00
clarify "unknown activity type" logging in ApInboxService.undo
This commit is contained in:
parent
803398e2c8
commit
c67f23d2c2
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue