use msid instead of mslabel since mslabel is obsolete

This commit is contained in:
Philipp Hancke 2014-12-02 15:46:19 -08:00
parent 50b4f33207
commit 3a685031be
1 changed files with 1 additions and 1 deletions

View File

@ -140,7 +140,7 @@ ColibriFocus.prototype.makeConference = function (peers, errorCallback) {
this.peerconnection.onaddstream = function (event) {
// search the jid associated with this stream
Object.keys(self.remotessrc).forEach(function (jid) {
if (self.remotessrc[jid].join('\r\n').indexOf('mslabel:' + event.stream.id) != -1) {
if (self.remotessrc[jid].join('\r\n').indexOf('msid:' + event.stream.id) != -1) {
event.peerjid = jid;
}
});