@stream-io/video-client 0.0.21 → 0.0.23

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/dist/index.es.js CHANGED
@@ -9280,7 +9280,9 @@ class Call {
9280
9280
  prevMeta === null || prevMeta === void 0 ? void 0 : prevMeta.settings.ring.incoming_call_timeout_ms,
9281
9281
  currentMeta.settings.ring.incoming_call_timeout_ms,
9282
9282
  ];
9283
- if (typeof timeoutMs === 'undefined' || timeoutMs === prevTimeoutMs)
9283
+ if (typeof timeoutMs === 'undefined' ||
9284
+ timeoutMs === prevTimeoutMs ||
9285
+ timeoutMs === 0)
9284
9286
  return;
9285
9287
  if (this.dropTimeout)
9286
9288
  clearTimeout(this.dropTimeout);
@@ -11083,7 +11085,7 @@ class StreamClient {
11083
11085
  }
11084
11086
  getUserAgent() {
11085
11087
  return (this.userAgent ||
11086
- `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.20"}`);
11088
+ `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.22"}`);
11087
11089
  }
11088
11090
  setUserAgent(userAgent) {
11089
11091
  this.userAgent = userAgent;