chore: no staged changes

This commit is contained in:
MythEclipse
2026-06-02 22:03:53 +07:00
parent 55042ca9eb
commit a4e91822f6
@@ -595,7 +595,8 @@ async function processBatch(
messages: MessageRecord[], messages: MessageRecord[],
): Promise<void> { ): Promise<void> {
if (messages.length === 0) return; if (messages.length === 0) return;
if (Date.now() < globalCooldownUntil) { const cooldownUntil = conversationErrorCooldown.get(conversationKey) ?? 0;
if (Date.now() < cooldownUntil) {
return; return;
} }