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

This commit is contained in:
Andrei Gavrilescu
2024-07-23 09:56:40 +03:00
committed by GitHub
parent 4a25b9722c
commit 3a40b52832

View File

@@ -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);