fix: Fixes follow-me when there is a screenshare.

This commit is contained in:
damencho 2023-01-30 15:06:37 -06:00
parent bc1a835e97
commit eed2074393
1 changed files with 1 additions and 1 deletions

View File

@ -92,7 +92,7 @@ function _getFollowMeState(state: IReduxState) {
return {
filmstripVisible: state['features/filmstrip'].visible,
maxStageParticipants: stageFilmstrip ? state['features/base/settings'].maxStageParticipants : undefined,
nextOnStage: stageFilmstrip ? undefined : pinnedParticipant?.id,
nextOnStage: pinnedParticipant?.id,
pinnedStageParticipants: stageFilmstrip ? JSON.stringify(getPinnedActiveParticipants(state)) : undefined,
sharedDocumentVisible: state['features/etherpad'].editing,
tileViewEnabled: shouldDisplayTileView(state)