Sfoglia il codice sorgente

typo fix

dekstopAudioStream --> desktopAudioStream
master
Rokixy 3 anni fa
parent
commit
076113940b
1 ha cambiato i file con 3 aggiunte e 3 eliminazioni
  1. 3
    3
      conference.js

+ 3
- 3
conference.js Vedi File

@@ -1711,10 +1711,10 @@ export default {
1711 1711
                 = this._turnScreenSharingOff.bind(this, didHaveVideo);
1712 1712
 
1713 1713
             const desktopVideoStream = desktopStreams.find(stream => stream.getType() === MEDIA_TYPE.VIDEO);
1714
-            const dekstopAudioStream = desktopStreams.find(stream => stream.getType() === MEDIA_TYPE.AUDIO);
1714
+            const desktopAudioStream = desktopStreams.find(stream => stream.getType() === MEDIA_TYPE.AUDIO);
1715 1715
 
1716
-            if (dekstopAudioStream) {
1717
-                dekstopAudioStream.on(
1716
+            if (desktopAudioStream) {
1717
+                desktopAudioStream.on(
1718 1718
                     JitsiTrackEvents.LOCAL_TRACK_STOPPED,
1719 1719
                     () => {
1720 1720
                         logger.debug(`Local screensharing audio track stopped. ${this.isSharingScreen}`);

Loading…
Annulla
Salva