@stream-io/video-client 1.17.0 → 1.17.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/dist/index.browser.es.js +4 -2
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +4 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +4 -2
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/rtc/BasePeerConnection.ts +1 -0
package/package.json
CHANGED
|
@@ -206,6 +206,7 @@ export abstract class BasePeerConnection {
|
|
|
206
206
|
const state = this.pc.iceConnectionState;
|
|
207
207
|
this.logger('debug', `ICE connection state changed`, state);
|
|
208
208
|
|
|
209
|
+
if (this.state.callingState === CallingState.OFFLINE) return;
|
|
209
210
|
if (this.state.callingState === CallingState.RECONNECTING) return;
|
|
210
211
|
|
|
211
212
|
// do nothing when ICE is restarting
|