fixed step issue
This commit is contained in:
parent
c3a8c2d2a2
commit
dca5bdc1de
|
|
@ -186,6 +186,7 @@ export const TracksProvider = ({ children }) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const trackStoppedBatchInterval = setInterval(() => {
|
const trackStoppedBatchInterval = setInterval(() => {
|
||||||
|
console.log(trackStoppedQueue);
|
||||||
if (!trackStoppedQueue.length) {
|
if (!trackStoppedQueue.length) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,11 @@
|
||||||
|
/**
|
||||||
|
* Track state & reducer
|
||||||
|
* ---
|
||||||
|
* All (participant & screen) video and audio tracks indexed on participant ID
|
||||||
|
* If using manual track subscriptions, we'll also keep a record of those
|
||||||
|
* and their playing / paused state
|
||||||
|
*/
|
||||||
|
|
||||||
import { getId, getScreenId } from './participantsState';
|
import { getId, getScreenId } from './participantsState';
|
||||||
|
|
||||||
const initialTracksState = {
|
const initialTracksState = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue