Update app.ts

Same, grammatical error at closing a string, corrected now.
This commit is contained in:
KevinDog24
2024-08-25 12:35:58 -07:00
committed by GitHub
parent ec0d2e871e
commit d7c7896e70

View File

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