[RN] Leave Conference on room-lock "Password required" cancellation

This commit is contained in:
Lyubo Marinov 2017-10-06 15:38:00 -05:00
parent 2eb36c4053
commit 5a5f6816c6
1 changed files with 4 additions and 5 deletions

View File

@ -4,6 +4,7 @@ import PropTypes from 'prop-types';
import React, { Component } from 'react';
import { connect } from 'react-redux';
import { appNavigate } from '../../app';
import { setPassword } from '../../base/conference';
import { Dialog } from '../../base/dialog';
@ -86,11 +87,9 @@ class PasswordRequiredPrompt extends Component {
* otherwise, {@code false}.
*/
_onCancel() {
// XXX The user has canceled this prompt for a password so we are to
// attempt joining the conference without a password. If the conference
// still requires a password to join, the user will be prompted again
// later.
return this._onSubmit(undefined);
this.props.dispatch(appNavigate(undefined));
return true;
}
_onSubmit: (?string) => boolean;