fix exception handling for Undo activities
This commit is contained in:
parent
cfc3ab4b04
commit
0de7a084a9
|
@ -666,7 +666,7 @@ export class ApInboxService {
|
|||
|
||||
const object = await resolver.resolve(activity.object).catch(e => {
|
||||
this.logger.error(`Resolution failed: ${e}`);
|
||||
return e;
|
||||
throw e;
|
||||
});
|
||||
|
||||
// don't queue because the sender may attempt again when timeout
|
||||
|
|
Loading…
Reference in New Issue