Fix correct Scope - this fixes JS error and Chrome Ext desktop sharing for me
This commit is contained in:
parent
4bb555e4b2
commit
dbed14db5e
|
@ -974,7 +974,7 @@ JingleSession.prototype.switchStreams = function (new_stream, oldStream, success
|
|||
self.peerconnection.addStream(new_stream);
|
||||
}
|
||||
|
||||
RTC.switchVideoStreams(new_stream, oldStream);
|
||||
APP.RTC.switchVideoStreams(new_stream, oldStream);
|
||||
|
||||
// Conference is not active
|
||||
if(!oldSdp || !self.peerconnection) {
|
||||
|
@ -1391,4 +1391,4 @@ JingleSession.prototype.remoteStreamAdded = function (data) {
|
|||
}
|
||||
}
|
||||
|
||||
module.exports = JingleSession;
|
||||
module.exports = JingleSession;
|
||||
|
|
Loading…
Reference in New Issue