소스 검색

fix(SDP): extmap's are allowed at session level

dev1
Nils Ohlmeier 2 년 전
부모
커밋
440c542018
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      modules/sdp/SDP.js

+ 1
- 1
modules/sdp/SDP.js 파일 보기

@@ -319,7 +319,7 @@ SDP.prototype.toJingle = function(elem, thecreator) {
319 319
             this.rtcpFbToJingle(i, elem, '*');
320 320
 
321 321
             // XEP-0294
322
-            const extmapLines = SDPUtil.findLines(this.media[i], 'a=extmap:');
322
+            const extmapLines = SDPUtil.findLines(this.media[i], 'a=extmap:', this.session);
323 323
 
324 324
             for (let j = 0; j < extmapLines.length; j++) {
325 325
                 const extmap = SDPUtil.parseExtmap(extmapLines[j]);

Loading…
취소
저장