You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Twilio employee Donal Toomey requested that I create this issue.
Today, calling const videoTrack = new LocalVideoTrack(mediaStreamTrack) results in being unable to call videoTrack.restart(). Today, we're bypassing this by passing the following into the constructor's options object.
// @ts-ignoreisCreatedByCreateLocalTracks: true,
We'd like to request one of the following two solutions
Allow calling track.restart() on local tracks created via constructors (this is our preferred solution)
Make isCreatedByCreateLocalTracks public (this is a reasonable fallback solution)
The text was updated successfully, but these errors were encountered:
Twilio employee Donal Toomey requested that I create this issue.
Today, calling
const videoTrack = new LocalVideoTrack(mediaStreamTrack)
results in being unable to callvideoTrack.restart()
. Today, we're bypassing this by passing the following into the constructor's options object.We'd like to request one of the following two solutions
track.restart()
on local tracks created via constructors (this is our preferred solution)isCreatedByCreateLocalTracks
public (this is a reasonable fallback solution)The text was updated successfully, but these errors were encountered: