-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sdp overhaul #1234
Sdp overhaul #1234
Conversation
… corner cases/side effects to other flows. haven't touched ffox yet
Hi, thanks for your contribution! |
Jenkins, add to whitelist, please. |
The tests have failed: Hmm seems to be outdated. Will try again. |
this depends on jitsi/lib-jitsi-meet#338 |
…verted back to how it is currently on master)
APP.UI.setAudioMuted(this.getMyUserId(), this.audioMuted); | ||
}); | ||
useAudioStream (newStream) { | ||
room.replaceStream(localAudio, newStream) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think now we are not returning anything anymore. Is this by mistake?
We should either return Promise either fix the documentation if we don't need the Promise anymore.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed (returned the promise)
* @returns {Promise} | ||
*/ | ||
useVideoStream (newStream) { | ||
room.replaceStream(localVideo, newStream) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think now we are not returning anything anymore. Is this by mistake?
We should either return Promise either fix the documentation if we don't need the Promise anymore.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed (returned the promise)
No description provided.