소스 검색

fix(p2p) fix error if p2p session is stopped while accepting it

The _MEDIA_SESSION_STARTED would be emitted with `null` as the session, instead
of the original one.
tags/v0.0.2
Saúl Ibarra Corretgé 4 년 전
부모
커밋
8f1e4ee1ef
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1
    1
      JitsiConference.js

+ 1
- 1
JitsiConference.js 파일 보기

@@ -2995,7 +2995,7 @@ JitsiConference.prototype._acceptP2PIncomingCall = function(
2995 2995
 
2996 2996
             this.eventEmitter.emit(
2997 2997
                 JitsiConferenceEvents._MEDIA_SESSION_STARTED,
2998
-                this.p2pJingleSession);
2998
+                jingleSession);
2999 2999
         },
3000 3000
         error => {
3001 3001
             logger.error(

Loading…
취소
저장