Explorar el Código

Fixes TypeError not a function.

dev1
damencho hace 9 años
padre
commit
9ce6126a2f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      modules/RTC/DataChannels.js

+ 1
- 1
modules/RTC/DataChannels.js Ver fichero

@@ -67,7 +67,7 @@ DataChannels.prototype.onDataChannel = function (event) {
67 67
         // selections so that it can do adaptive simulcast,
68 68
         // we want the notification to trigger even if userJid is undefined,
69 69
         // or null.
70
-        this.handleSelectedEndpointEvent(this.lastSelectedEndpoint);
70
+        self.handleSelectedEndpointEvent(self.lastSelectedEndpoint);
71 71
     };
72 72
 
73 73
     dataChannel.onerror = function (error) {

Loading…
Cancelar
Guardar