@stream-io/video-client 1.18.2 → 1.18.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stream-io/video-client",
3
- "version": "1.18.2",
3
+ "version": "1.18.3",
4
4
  "packageManager": "yarn@3.2.4",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.es.js",
@@ -227,11 +227,6 @@ export class Publisher extends BasePeerConnection {
227
227
  }
228
228
  for (const track of this.clonedTracks) {
229
229
  this.stopTrack(track);
230
- // @ts-expect-error release() is present in react-native-webrtc
231
- if (track && typeof track.release === 'function') {
232
- // @ts-expect-error
233
- track.release();
234
- }
235
230
  }
236
231
  };
237
232