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