Skip to content

Commit 9b32c96

Browse files
authoredNov 22, 2021
fix: reconnection logic (#4044)
1 parent 5e7c001 commit 9b32c96

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎client-src/socket.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ const socket = function initSocket(url, handlers, reconnect) {
4747
log.info("Trying to reconnect...");
4848

4949
setTimeout(() => {
50-
socket(url, handlers);
50+
socket(url, handlers, reconnect);
5151
}, retryInMs);
5252
}
5353
});

0 commit comments

Comments
 (0)
Please sign in to comment.