fix exception handling for Undo activities

This commit is contained in:
Hazelnoot 2024-11-03 16:51:12 -05:00
parent cfc3ab4b04
commit 0de7a084a9
1 changed files with 1 additions and 1 deletions

View File

@ -666,7 +666,7 @@ export class ApInboxService {
const object = await resolver.resolve(activity.object).catch(e => { const object = await resolver.resolve(activity.object).catch(e => {
this.logger.error(`Resolution failed: ${e}`); this.logger.error(`Resolution failed: ${e}`);
return e; throw e;
}); });
// don't queue because the sender may attempt again when timeout // don't queue because the sender may attempt again when timeout