diff options
| author | Hazelnoot <acomputerdog@gmail.com> | 2025-02-16 14:12:13 -0500 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2025-03-21 12:37:06 -0400 |
| commit | f18d402ce60df24ff3eb920bf30360c1ccf8122b (patch) | |
| tree | 0f900382ec21afdcfe4fa7e50f9dd670aab49e06 /packages/backend/src | |
| parent | merge: Make sure that scheduledNote* types are only showing on and off option... (diff) | |
| download | sharkey-f18d402ce60df24ff3eb920bf30360c1ccf8122b.tar.gz sharkey-f18d402ce60df24ff3eb920bf30360c1ccf8122b.tar.bz2 sharkey-f18d402ce60df24ff3eb920bf30360c1ccf8122b.zip | |
fix typo in activity signature mismatch error
Diffstat (limited to 'packages/backend/src')
| -rw-r--r-- | packages/backend/src/queue/processors/InboxProcessorService.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/queue/processors/InboxProcessorService.ts b/packages/backend/src/queue/processors/InboxProcessorService.ts index 35a0bf095d..e128108779 100644 --- a/packages/backend/src/queue/processors/InboxProcessorService.ts +++ b/packages/backend/src/queue/processors/InboxProcessorService.ts @@ -232,7 +232,7 @@ export class InboxProcessorService implements OnApplicationShutdown { const signerHost = this.utilityService.extractDbHost(authUser.user.uri!); const activityIdHost = this.utilityService.extractDbHost(activity.id); if (signerHost !== activityIdHost) { - throw new Bull.UnrecoverableError(`skip: signerHost(${signerHost}) !== activity.id host(${activityIdHost}`); + throw new Bull.UnrecoverableError(`skip: signerHost(${signerHost}) !== activity.id host(${activityIdHost})`); } } else { // Activity ID should only be string or undefined. |