Browse Source

ref: remove references to legacy endpoint based signaling switch

tags/v0.0.2
Jorge Oliveira 2 years ago
parent
commit
add651fc7e

+ 0
- 4
JitsiConference.js View File

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

+ 1
- 1
modules/qualitycontrol/ReceiveVideoController.spec.js View File

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

+ 1
- 1
modules/sdp/SDP.spec.js View File

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

+ 1
- 1
modules/sdp/SDPDiffer.spec.js View File

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

+ 1
- 1
modules/xmpp/JingleSessionPC.spec.js View File

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

+ 1
- 1
modules/xmpp/SignalingLayerImpl.spec.js View File

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

Loading…
Cancel
Save