bugfix(remote-control): Remote control not working on linux
This commit is contained in:
parent
086889ed70
commit
6b0e8aab11
|
@ -1816,7 +1816,7 @@ export default {
|
||||||
const desktopVideoStream = streams.find(stream => stream.getType() === MEDIA_TYPE.VIDEO);
|
const desktopVideoStream = streams.find(stream => stream.getType() === MEDIA_TYPE.VIDEO);
|
||||||
|
|
||||||
if (desktopVideoStream) {
|
if (desktopVideoStream) {
|
||||||
this.useVideoStream(desktopVideoStream);
|
await this.useVideoStream(desktopVideoStream);
|
||||||
}
|
}
|
||||||
|
|
||||||
this._desktopAudioStream = streams.find(stream => stream.getType() === MEDIA_TYPE.AUDIO);
|
this._desktopAudioStream = streams.find(stream => stream.getType() === MEDIA_TYPE.AUDIO);
|
||||||
|
|
Loading…
Reference in New Issue