Merge pull request #4249 from matrix-org/bwindels/assumemethodswhentodevice
Fix: assume SAS is supported when starting request with .start
This commit is contained in:
commit
edd84ffd3a
1 changed files with 2 additions and 2 deletions
|
@ -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 ?
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue