periodically reconnect WebRTC.

This commit is contained in:
Miroslav Šedivý 2021-04-12 21:10:08 +02:00
parent f9ca3a25db
commit 5f9c565df6

View File

@ -463,7 +463,7 @@
this.events.emit('connection.webrtc', 'connected') this.events.emit('connection.webrtc', 'connected')
}) })
let webrtcReconnect: any let webrtcReconnect: any = null
this.webrtc.on('disconnected', () => { this.webrtc.on('disconnected', () => {
this.events.emit('connection.webrtc', 'disconnected') this.events.emit('connection.webrtc', 'disconnected')
this.clearWebRTCState() this.clearWebRTCState()
@ -478,14 +478,21 @@
} }
} }
// reconnect WebRTC // periodically reconnect WebRTC
if (this.connected) { if (this.connected && !webrtcReconnect) {
if (webrtcReconnect) clearTimeout(webrtcReconnect) webrtcReconnect = setInterval(() => {
// connect only if disconnected
if (this.state.connection.webrtc.status == 'disconnected') {
try {
this.webrtcConnect()
} catch (e) {}
}
webrtcReconnect = setTimeout(() => { // stop reconnecting if connected to webrtc or disconnected from WS
try { if (this.state.connection.webrtc.status == 'connected' || !this.connected) {
this.webrtcConnect() clearInterval(webrtcReconnect)
} catch (e) {} webrtcReconnect = null
}
}, 1000) }, 1000)
} }
}) })