summaryrefslogtreecommitdiff
path: root/packages/backend/src/queue
diff options
context:
space:
mode:
authordakkar <dakkar@thenautilus.net>2024-11-28 11:17:27 +0000
committerdakkar <dakkar@thenautilus.net>2024-11-28 11:17:27 +0000
commiteb25238a8eca0ef2adab4aab80de44375c086ed5 (patch)
treeea246e1c8d4d2dbc79054c7d4750213beb1cfae7 /packages/backend/src/queue
parenthonour blocks and "signing required" for note versions (diff)
parentmerge: Bump develop version (!789) (diff)
downloadsharkey-eb25238a8eca0ef2adab4aab80de44375c086ed5.tar.gz
sharkey-eb25238a8eca0ef2adab4aab80de44375c086ed5.tar.bz2
sharkey-eb25238a8eca0ef2adab4aab80de44375c086ed5.zip
Merge branch 'develop' into feature/2024.10
Diffstat (limited to 'packages/backend/src/queue')
-rw-r--r--packages/backend/src/queue/processors/InboxProcessorService.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/backend/src/queue/processors/InboxProcessorService.ts b/packages/backend/src/queue/processors/InboxProcessorService.ts
index 9026331dff..d75cf3616d 100644
--- a/packages/backend/src/queue/processors/InboxProcessorService.ts
+++ b/packages/backend/src/queue/processors/InboxProcessorService.ts
@@ -194,7 +194,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();