mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
Merge pull request #2045 from saghul/fix-fullscreen
[RN] Fix setting full-screen when joining a conference
This commit is contained in:
@@ -43,10 +43,10 @@ MiddlewareRegistry.register(({ getState }) => next => action => {
|
||||
break;
|
||||
}
|
||||
|
||||
const { audioOnly, conference }
|
||||
const { audioOnly, conference, joining }
|
||||
= getState()['features/base/conference'];
|
||||
|
||||
fullScreen = conference || action.conference ? !audioOnly : false;
|
||||
fullScreen = conference || joining ? !audioOnly : false;
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user