fix(rn) join conference if started by moderator
Issue was that APP is not defined at this place on mobile, thus this raising ReferenceError which caused the waitForOwner to break Closes: #10211
This commit is contained in:
parent
60dcac96a6
commit
085b07efcd
|
@ -501,7 +501,7 @@ export function checkIfCanJoin() {
|
|||
const { authRequired, password }
|
||||
= getState()['features/base/conference'];
|
||||
|
||||
const replaceParticipant = getReplaceParticipant(APP.store.getState());
|
||||
const replaceParticipant = getReplaceParticipant(getState());
|
||||
|
||||
authRequired && dispatch(_conferenceWillJoin(authRequired));
|
||||
authRequired && authRequired.join(password, replaceParticipant);
|
||||
|
|
Loading…
Reference in New Issue