SandroID

Results 3 comments of SandroID

I resolved this by adding '`transports': ['websocket'],` option ``` this.socket = openSocket(socketUrl,{ 'reconnection': true, 'reconnectionDelay': 500, 'reconnectionAttempts': Infinity, 'transports': ['websocket'], }); ``` But that option is not required, am I...