diff options
| author | dakkar <dakkar@thenautilus.net> | 2024-11-28 11:17:27 +0000 |
|---|---|---|
| committer | dakkar <dakkar@thenautilus.net> | 2024-11-28 11:17:27 +0000 |
| commit | eb25238a8eca0ef2adab4aab80de44375c086ed5 (patch) | |
| tree | ea246e1c8d4d2dbc79054c7d4750213beb1cfae7 /packages/backend/src/queue | |
| parent | honour blocks and "signing required" for note versions (diff) | |
| parent | merge: Bump develop version (!789) (diff) | |
| download | sharkey-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.ts | 3 |
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(); |