fix typo in activity signature mismatch error

This commit is contained in:
Hazelnoot 2025-02-16 14:12:13 -05:00
parent 51c6c763e3
commit f18d402ce6

View file

@ -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.