@stream-io/video-client 0.5.9 → 0.5.10

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
@@ -7665,10 +7665,10 @@ class Publisher {
7665
7665
  if (!preferredCodec && trackType === TrackType.VIDEO) {
7666
7666
  if (isReactNative()) {
7667
7667
  const osName = getOSInfo()?.name.toLowerCase();
7668
- if (osName === 'ios' || osName === 'ipados') {
7668
+ if (osName === 'ipados') {
7669
7669
  // in ipads it was noticed that if vp8 codec is used
7670
7670
  // then the bytes sent is 0 in the outbound-rtp
7671
- // so we are forcing h264 codec for ipads and also in ios devices
7671
+ // so we are forcing h264 codec for ipads
7672
7672
  preferredCodec = 'H264';
7673
7673
  }
7674
7674
  else if (osName === 'android') {
@@ -14261,7 +14261,7 @@ class StreamClient {
14261
14261
  });
14262
14262
  };
14263
14263
  this.getUserAgent = () => {
14264
- const version = "0.5.9" ;
14264
+ const version = "0.5.10" ;
14265
14265
  return (this.userAgent ||
14266
14266
  `stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
14267
14267
  };