Parcourir la source

feat(rtcstats): move conference start time to ljm (#14900)

factor2
Andrei Gavrilescu il y a 11 mois
Parent
révision
3a40b52832
Aucun compte lié à l'adresse e-mail de l'auteur
1 fichiers modifiés avec 0 ajouts et 9 suppressions
  1. 0
    9
      react/features/rtcstats/middleware.ts

+ 0
- 9
react/features/rtcstats/middleware.ts Voir le fichier

@@ -3,7 +3,6 @@ import { AnyAction } from 'redux';
3 3
 import { IStore } from '../app/types';
4 4
 import {
5 5
     CONFERENCE_JOINED,
6
-    CONFERENCE_TIMESTAMP_CHANGED,
7 6
     E2E_RTT_CHANGED
8 7
 } from '../base/conference/actionTypes';
9 8
 import { DOMINANT_SPEAKER_CHANGED } from '../base/participants/actionTypes';
@@ -124,14 +123,6 @@ MiddlewareRegistry.register((store: IStore) => (next: Function) => (action: AnyA
124 123
         }
125 124
         break;
126 125
     }
127
-    case CONFERENCE_TIMESTAMP_CHANGED: {
128
-        if (isRTCStatsEnabled(state)) {
129
-            const { conferenceTimestamp } = action;
130
-
131
-            RTCStats.sendConferenceTimestamp(conferenceTimestamp);
132
-        }
133
-        break;
134
-    }
135 126
     }
136 127
 
137 128
     return next(action);

Chargement…
Annuler
Enregistrer