ask request if method is supported rather than checking ourselves

This commit is contained in:
Bruno Windels 2020-03-20 13:37:00 +01:00
parent 519c7f9ef0
commit 301b484371

View file

@ -72,8 +72,8 @@ export default class VerificationPanel extends React.PureComponent {
renderQRPhase(pending) { renderQRPhase(pending) {
const {member, request} = this.props; const {member, request} = this.props;
const showSAS = request.methods.includes(verificationMethods.SAS); const showSAS = request.otherPartySupportsMethod(verificationMethods.SAS);
const showQR = this.props.request.otherPartySupportsMethod(SCAN_QR_CODE_METHOD); const showQR = request.otherPartySupportsMethod(SCAN_QR_CODE_METHOD);
const AccessibleButton = sdk.getComponent('elements.AccessibleButton'); const AccessibleButton = sdk.getComponent('elements.AccessibleButton');
const noCommonMethodError = !showSAS && !showQR ? const noCommonMethodError = !showSAS && !showQR ?