瀏覽代碼

ref: remove references to legacy endpoint based signaling switch

tags/v0.0.2
Jorge Oliveira 2 年之前
父節點
當前提交
add651fc7e

+ 0
- 4
JitsiConference.js 查看文件

609
  * @returns {Promise}
609
  * @returns {Promise}
610
  */
610
  */
611
 JitsiConference.prototype.leave = async function(reason) {
611
 JitsiConference.prototype.leave = async function(reason) {
612
-    if (this.participantConnectionStatus) {
613
-        this.participantConnectionStatus.dispose();
614
-        this.participantConnectionStatus = null;
615
-    }
616
     if (this.avgRtpStatsReporter) {
612
     if (this.avgRtpStatsReporter) {
617
         this.avgRtpStatsReporter.dispose();
613
         this.avgRtpStatsReporter.dispose();
618
         this.avgRtpStatsReporter = null;
614
         this.avgRtpStatsReporter = null;

+ 1
- 1
modules/qualitycontrol/ReceiveVideoController.spec.js 查看文件

59
 
59
 
60
     describe('when sourceNameSignaling is enabled', () => {
60
     describe('when sourceNameSignaling is enabled', () => {
61
         beforeEach(() => {
61
         beforeEach(() => {
62
-            FeatureFlags.init({ sourceNameSignaling: true });
62
+            FeatureFlags.init({ });
63
         });
63
         });
64
 
64
 
65
         it('should call setNewReceiverVideoConstraints with the source names format.', () => {
65
         it('should call setNewReceiverVideoConstraints with the source names format.', () => {

+ 1
- 1
modules/sdp/SDP.spec.js 查看文件

101
             expect(videoSources.length).toBe(2);
101
             expect(videoSources.length).toBe(2);
102
         });
102
         });
103
         it('put source names as source element attributes', () => {
103
         it('put source names as source element attributes', () => {
104
-            FeatureFlags.init({ sourceNameSignaling: true });
104
+            FeatureFlags.init({ });
105
 
105
 
106
             const sdp = new SDP(testSdp);
106
             const sdp = new SDP(testSdp);
107
             const accept = $iq({
107
             const accept = $iq({

+ 1
- 1
modules/sdp/SDPDiffer.spec.js 查看文件

41
         /* eslint-enable max-len*/
41
         /* eslint-enable max-len*/
42
 
42
 
43
         it('should include source names in added/removed sources', () => {
43
         it('should include source names in added/removed sources', () => {
44
-            FeatureFlags.init({ sourceNameSignaling: true });
44
+            FeatureFlags.init({ });
45
 
45
 
46
             const newToOldDiff = new SDPDiffer(new SDP(testSdpNew), new SDP(testSdpOld));
46
             const newToOldDiff = new SDPDiffer(new SDP(testSdpNew), new SDP(testSdpOld));
47
             const sourceRemoveIq = $iq({})
47
             const sourceRemoveIq = $iq({})

+ 1
- 1
modules/xmpp/JingleSessionPC.spec.js 查看文件

65
 
65
 
66
     describe('send/receive video constraints w/ source-name', () => {
66
     describe('send/receive video constraints w/ source-name', () => {
67
         beforeEach(() => {
67
         beforeEach(() => {
68
-            FeatureFlags.init({ sourceNameSignaling: true });
68
+            FeatureFlags.init({ });
69
         });
69
         });
70
 
70
 
71
         it('sends content-modify with recv frame size', () => {
71
         it('sends content-modify with recv frame size', () => {

+ 1
- 1
modules/xmpp/SignalingLayerImpl.spec.js 查看文件

68
             let chatRoom;
68
             let chatRoom;
69
 
69
 
70
             beforeEach(() => {
70
             beforeEach(() => {
71
-                FeatureFlags.init({ sourceNameSignaling: true });
71
+                FeatureFlags.init({ });
72
                 signalingLayer = new SignalingLayerImpl();
72
                 signalingLayer = new SignalingLayerImpl();
73
                 chatRoom = createMockChatRoom();
73
                 chatRoom = createMockChatRoom();
74
                 signalingLayer.setChatRoom(chatRoom);
74
                 signalingLayer.setChatRoom(chatRoom);

Loading…
取消
儲存