@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.cjs.js
CHANGED
|
@@ -6116,6 +6116,7 @@ class Publisher {
|
|
|
6116
6116
|
this.trackLayersCache[trackType] = undefined;
|
|
6117
6117
|
});
|
|
6118
6118
|
}
|
|
6119
|
+
this.pc.removeEventListener('negotiationneeded', this.onNegotiationNeeded);
|
|
6119
6120
|
this.pc.close();
|
|
6120
6121
|
};
|
|
6121
6122
|
/**
|
|
@@ -11838,7 +11839,7 @@ class StreamClient {
|
|
|
11838
11839
|
}
|
|
11839
11840
|
getUserAgent() {
|
|
11840
11841
|
return (this.userAgent ||
|
|
11841
|
-
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.
|
|
11842
|
+
`stream-video-javascript-client-${this.node ? 'node' : 'browser'}-${"0.0.38"}`);
|
|
11842
11843
|
}
|
|
11843
11844
|
setUserAgent(userAgent) {
|
|
11844
11845
|
this.userAgent = userAgent;
|