Fix the direction string.
Used to return 'sendre' instead of 'sendrecv'.
This commit is contained in:
parent
19e4955392
commit
071c01e644
|
@ -137,7 +137,7 @@ SimulcastUtils.prototype.parseMedia = function (lines, mediatypes) {
|
|||
lines[i].substring(0, 'a=sendonly'.length) === 'a=sendonly' ||
|
||||
lines[i].substring(0, 'a=inactive'.length) === 'a=inactive')) {
|
||||
|
||||
cur_media.direction = lines[i].substring('a='.length, 8);
|
||||
cur_media.direction = lines[i].substring('a='.length);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1254,4 +1254,4 @@ $(document).bind('startsimulcastlayer', function (event, simulcastLayer) {
|
|||
$(document).bind('stopsimulcastlayer', function (event, simulcastLayer) {
|
||||
var ssrc = simulcastLayer.primarySSRC;
|
||||
simulcast._setLocalVideoStreamEnabled(ssrc, false);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue