diff --git a/react/features/rtcstats/middleware.ts b/react/features/rtcstats/middleware.ts index 46f838c290..41f975fcd5 100644 --- a/react/features/rtcstats/middleware.ts +++ b/react/features/rtcstats/middleware.ts @@ -3,7 +3,6 @@ import { AnyAction } from 'redux'; import { IStore } from '../app/types'; import { CONFERENCE_JOINED, - CONFERENCE_TIMESTAMP_CHANGED, E2E_RTT_CHANGED } from '../base/conference/actionTypes'; import { DOMINANT_SPEAKER_CHANGED } from '../base/participants/actionTypes'; @@ -124,14 +123,6 @@ MiddlewareRegistry.register((store: IStore) => (next: Function) => (action: AnyA } break; } - case CONFERENCE_TIMESTAMP_CHANGED: { - if (isRTCStatsEnabled(state)) { - const { conferenceTimestamp } = action; - - RTCStats.sendConferenceTimestamp(conferenceTimestamp); - } - break; - } } return next(action);