소스 검색

[RN] Fix setting full-screen when joining a conference

HIDE_DIALOG happens between WILL_JOIN and JOINED so get the joining conference
from the state instead of the action.
j8
Saúl Ibarra Corretgé 8 년 전
부모
커밋
d57b0547f3
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2
    2
      react/features/mobile/full-screen/middleware.js

+ 2
- 2
react/features/mobile/full-screen/middleware.js 파일 보기

@@ -43,10 +43,10 @@ MiddlewareRegistry.register(({ getState }) => next => action => {
43 43
             break;
44 44
         }
45 45
 
46
-        const { audioOnly, conference }
46
+        const { audioOnly, conference, joining }
47 47
             = getState()['features/base/conference'];
48 48
 
49
-        fullScreen = conference || action.conference ? !audioOnly : false;
49
+        fullScreen = conference || joining ? !audioOnly : false;
50 50
         break;
51 51
     }
52 52
 

Loading…
취소
저장