Explorar el Código

fix: attempted to fix ws issue where onConnect was sometimes called twice in a row

Kristian Vos hace 3 años
padre
commit
688b29fd87
Se han modificado 1 ficheros con 3 adiciones y 2 borrados
  1. 3 2
      frontend/src/ws.js

+ 3 - 2
frontend/src/ws.js

@@ -149,11 +149,12 @@ export default {
 			firstInit = false;
 			this.socket.on("ready", () => {
 				console.log("WS: SOCKET READY");
+
+				onConnect.forEach(cb => cb());
+
 				ready = true;
 
 				setTimeout(() => {
-					onConnect.forEach(cb => cb());
-
 					// dispatches that were attempted while the server was offline
 					pendingDispatches.forEach(cb => cb());
 					pendingDispatches = [];