mirror of
https://github.com/paricafe/misskey.git
synced 2024-12-27 00:06:44 -06:00
allow anonymous activities (resolves #819)
This commit is contained in:
parent
3be2143a9a
commit
7b4fe1a89b
1 changed files with 2 additions and 1 deletions
|
@ -191,7 +191,8 @@ export class InboxProcessorService implements OnApplicationShutdown {
|
|||
throw new Bull.UnrecoverableError(`skip: signerHost(${signerHost}) !== activity.id host(${activityIdHost}`);
|
||||
}
|
||||
} else {
|
||||
throw new Bull.UnrecoverableError('skip: activity id is not a string');
|
||||
// Activity ID should only be string or undefined.
|
||||
delete activity.id;
|
||||
}
|
||||
|
||||
this.apRequestChart.inbox();
|
||||
|
|
Loading…
Reference in a new issue