Browse Source

bugfix(remote-control): Remote control not working on linux

master
Andrei Gavrilescu 5 years ago
parent
commit
6b0e8aab11
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      conference.js

+ 1
- 1
conference.js View File

@@ -1816,7 +1816,7 @@ export default {
1816 1816
                 const desktopVideoStream = streams.find(stream => stream.getType() === MEDIA_TYPE.VIDEO);
1817 1817
 
1818 1818
                 if (desktopVideoStream) {
1819
-                    this.useVideoStream(desktopVideoStream);
1819
+                    await this.useVideoStream(desktopVideoStream);
1820 1820
                 }
1821 1821
 
1822 1822
                 this._desktopAudioStream = streams.find(stream => stream.getType() === MEDIA_TYPE.AUDIO);

Loading…
Cancel
Save