@stream-io/video-client 0.0.38 → 0.0.39
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 +2 -1
- package/dist/index.browser.es.js.map +1 -1
- package/dist/index.cjs.js +2 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.es.js +2 -1
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/src/rtc/Publisher.ts +1 -0
package/dist/index.es.js
CHANGED
|
@@ -6096,6 +6096,7 @@ class Publisher {
|
|
|
6096
6096
|
this.trackLayersCache[trackType] = undefined;
|
|
6097
6097
|
});
|
|
6098
6098
|
}
|
|
6099
|
+
this.pc.removeEventListener('negotiationneeded', this.onNegotiationNeeded);
|
|
6099
6100
|
this.pc.close();
|
|
6100
6101
|
};
|
|
6101
6102
|
/**
|
|
@@ -11818,7 +11819,7 @@ class StreamClient {
|
|
|
11818
11819
|
}
|
|
11819
11820
|
getUserAgent() {
|
|
11820
11821
|
return (this.userAgent ||
|
|
11821
|
-
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.
|
|
11822
|
+
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.38"}`);
|
|
11822
11823
|
}
|
|
11823
11824
|
setUserAgent(userAgent) {
|
|
11824
11825
|
this.userAgent = userAgent;
|