@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/CHANGELOG.md +7 -0
- package/README.md +1 -1
- package/dist/index.browser.es.js +3 -3
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +3 -3
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/rtc/Publisher.ts +2 -2
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 === '
|
|
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
|
|
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.
|
|
14264
|
+
const version = "0.5.10" ;
|
|
14265
14265
|
return (this.userAgent ||
|
|
14266
14266
|
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${version}`);
|
|
14267
14267
|
};
|