Merge pull request #2045 from saghul/fix-fullscreen
[RN] Fix setting full-screen when joining a conference
This commit is contained in:
commit
e25c38d716
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue