Revert "fix(large-video): Prevents unnecessary updates when container is hidden"

This reverts commit 6deb0a6385.
This commit is contained in:
Hristo Terezov
2025-11-11 08:39:53 -06:00
parent 3772b9a5ae
commit dad4fb9e06
9 changed files with 10 additions and 67 deletions

View File

@@ -158,11 +158,10 @@ const VideoLayout = {
return;
}
const state = APP.store.getState();
const currentContainer = largeVideo.getCurrentContainer();
const currentContainerType = largeVideo.getCurrentContainerType();
const isOnLarge = this.isCurrentlyOnLarge(id);
const state = APP.store.getState();
const participant = getParticipantById(state, id);
const videoTrack = getVideoTrackByParticipant(state, participant);
const videoStream = videoTrack?.jitsiTrack;