Skip to content

Commit

Permalink
feat(rtcstats): move conference start time to ljm (jitsi#14900)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-gavrilescu authored Jul 23, 2024
1 parent 4a25b97 commit 3a40b52
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions react/features/rtcstats/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Expand Down Expand Up @@ -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);
Expand Down

0 comments on commit 3a40b52

Please sign in to comment.