Increase wait delay in chat-jump

This commit is contained in:
Cohee
2026-01-14 02:32:53 +02:00
parent 7e410b4aa8
commit 26af6b10c3
+1 -1
View File
@@ -2971,7 +2971,7 @@ export function initDefaultSlashCommands() {
if (isFinite(firstDisplayedMessageId) && messageIndex < firstDisplayedMessageId) {
const needToLoadCount = firstDisplayedMessageId - messageIndex;
await showMoreMessages(needToLoadCount);
await delay(1);
await delay(debounce_timeout.quick);
}
const chatContainer = document.getElementById('chat');