@stream-io/video-client 0.3.10 → 0.3.11
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 +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/dist/version.d.ts +1 -1
- package/package.json +1 -1
- package/src/rtc/codecs.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
### [0.3.11](https://github.com/GetStream/stream-video-js/compare/client0.3.10...client0.3.11) (2023-08-30)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
* **react-native:** blank stream on join ([#1022](https://github.com/GetStream/stream-video-js/issues/1022)) ([d5a48f6](https://github.com/GetStream/stream-video-js/commit/d5a48f6e75bf4e1b5c0745b7f0b001fd0ac4b183))
|
|
11
|
+
|
|
5
12
|
### [0.3.10](https://github.com/GetStream/stream-video-js/compare/client0.3.9...client0.3.10) (2023-08-30)
|
|
6
13
|
|
|
7
14
|
|
package/dist/index.browser.es.js
CHANGED
|
@@ -6100,10 +6100,10 @@ const getPreferredCodecs = (kind, preferredCodec, codecToRemove) => {
|
|
|
6100
6100
|
cap.codecs.forEach((c) => {
|
|
6101
6101
|
const codec = c.mimeType.toLowerCase();
|
|
6102
6102
|
logger === null || logger === void 0 ? void 0 : logger('debug', `Found supported codec: ${codec}`);
|
|
6103
|
-
const shouldRemoveCodec = codecToRemove && codec === `${kind}/${codecToRemove}`;
|
|
6103
|
+
const shouldRemoveCodec = codecToRemove && codec === `${kind}/${codecToRemove.toLowerCase()}`;
|
|
6104
6104
|
if (shouldRemoveCodec)
|
|
6105
6105
|
return;
|
|
6106
|
-
const matchesCodec = codec === `${kind}/${preferredCodec}`;
|
|
6106
|
+
const matchesCodec = codec === `${kind}/${preferredCodec.toLowerCase()}`;
|
|
6107
6107
|
if (!matchesCodec) {
|
|
6108
6108
|
unmatched.push(c);
|
|
6109
6109
|
return;
|
|
@@ -12842,7 +12842,7 @@ class WSConnectionFallback {
|
|
|
12842
12842
|
}
|
|
12843
12843
|
}
|
|
12844
12844
|
|
|
12845
|
-
const version = '0.3.
|
|
12845
|
+
const version = '0.3.11';
|
|
12846
12846
|
|
|
12847
12847
|
const logger = getLogger(['location']);
|
|
12848
12848
|
const HINT_URL = `https://hint.stream-io-video.com/`;
|