From e608d073bdaf6ef33cf45cae8092d7dc0187ecac Mon Sep 17 00:00:00 2001 From: Declan Freeman-Gleason Date: Tue, 8 Dec 2020 13:33:03 -0500 Subject: [PATCH] Lower reconnection delay to 100ms for more responsive reconnection (#169) --- photon-client/src/main.js | 1 + 1 file changed, 1 insertion(+) diff --git a/photon-client/src/main.js b/photon-client/src/main.js index 2dc8c5e64..a95e93191 100644 --- a/photon-client/src/main.js +++ b/photon-client/src/main.js @@ -21,6 +21,7 @@ import VueNativeSock from 'vue-native-websocket'; Vue.use(VueNativeSock, wsURL, { reconnection: true, + reconnectionDelay: 100, connectManually: true, format: "arraybuffer", });