Skip to content

Commit

Permalink
fix exception handling for Undo activities
Browse files Browse the repository at this point in the history
  • Loading branch information
warriordog authored and kakkokari-gtyih committed Nov 22, 2024
1 parent e6a4e9f commit 7d99b2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/backend/src/core/activitypub/ApInboxService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,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
Expand Down

0 comments on commit 7d99b2d

Please sign in to comment.