Browse Source

Fixed calling wrong parent method in "getLocalStreams".

pull/413/head
Joachim Bauch 9 years ago
parent
commit
be3010a846
Failed to extract signature
  1. 2
      static/js/mediastream/peerconnection.js

2
static/js/mediastream/peerconnection.js

@ -347,7 +347,7 @@ define(['jquery', 'underscore', 'webrtc.adapter'], function($, _) { @@ -347,7 +347,7 @@ define(['jquery', 'underscore', 'webrtc.adapter'], function($, _) {
if (!this.pc) {
return [];
}
return this.pc.getRemoteStreams.apply(this.pc, arguments);
return this.pc.getLocalStreams.apply(this.pc, arguments);
};

Loading…
Cancel
Save