fixup: these are actually on the verifier

pull/21833/head
Bruno Windels 2020-04-02 11:27:00 +02:00
parent fd04f248c4
commit 119fd2f519
1 changed files with 2 additions and 2 deletions

View File

@ -282,7 +282,7 @@ export default class VerificationPanel extends React.PureComponent {
_updateVerifierState = () => {
const {request} = this.props;
const {sasEvent, reciprocateQREvent} = request;
const {sasEvent, reciprocateQREvent} = request.verifier;
request.verifier.off('show_sas', this._updateVerifierState);
request.verifier.off('show_reciprocate_qr', this._updateVerifierState);
this.setState({sasEvent, reciprocateQREvent});
@ -310,7 +310,7 @@ export default class VerificationPanel extends React.PureComponent {
request.on("change", this._onRequestChange);
if (request.verifier) {
const {request} = this.props;
const {sasEvent, reciprocateQREvent} = request;
const {sasEvent, reciprocateQREvent} = request.verifier;
this.setState({sasEvent, reciprocateQREvent});
}
this._onRequestChange();