Update conversation.html

This commit is contained in:
2025-05-27 15:49:49 +02:00
parent 5bb37da909
commit 586337ceec

View File

@@ -399,11 +399,15 @@ if (typeof window.ChatManager === 'undefined') {
// Create socket instance
socket = io({
transports: ['websocket'],
upgrade: false,
reconnection: false,
debug: true,
forceNew: false,
transports: ['websocket', 'polling'],
upgrade: true,
reconnection: true,
reconnectionAttempts: 5,
reconnectionDelay: 1000,
reconnectionDelayMax: 5000,
timeout: 20000,
autoConnect: true,
forceNew: true,
multiplex: false
});