Update app.ts - added `` to a string

An error message was missing the `` to indicate its text and that was giving errors when ran via docker, did not cause any errors when running locally.
This commit is contained in:
KevinDog24
2024-08-25 12:31:38 -07:00
committed by GitHub
parent 542b0582da
commit ec0d2e871e

View File

@@ -44,7 +44,7 @@ const handleQueue = async (userId) => {
try {
await processUserMessage(ctx, { flowDynamic, state, provider });
} catch (error) {
console.error(Error processing message for user ${userId}:, error);
console.error(`Error processing message for user ${userId}`:, error);
} finally {
userLocks.set(userId, false); // Release the lock
}