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