use crypto.verification.request even when xsign is disabled

pull/21833/head
Bruno Windels 2020-03-06 16:50:39 +01:00
parent 191abb5b0d
commit a7de575316
1 changed files with 22 additions and 19 deletions

View File

@ -1495,8 +1495,14 @@ export default createReactClass({
} }
}); });
if (SettingsStore.isFeatureEnabled("feature_cross_signing")) {
cli.on("crypto.verification.request", request => { cli.on("crypto.verification.request", request => {
const isFlagOn = SettingsStore.isFeatureEnabled("feature_cross_signing");
if (!isFlagOn && !request.channel.deviceId) {
request.cancel({code: "m.invalid_message", reason: "This client has cross-signing disabled"});
return;
}
if (request.pending) { if (request.pending) {
ToastStore.sharedInstance().addOrReplaceToast({ ToastStore.sharedInstance().addOrReplaceToast({
key: 'verifreq_' + request.channel.transactionId, key: 'verifreq_' + request.channel.transactionId,
@ -1505,16 +1511,13 @@ export default createReactClass({
props: {request}, props: {request},
component: sdk.getComponent("toasts.VerificationRequestToast"), component: sdk.getComponent("toasts.VerificationRequestToast"),
}); });
} } else if (request.started) {
}); const VerificationRequestDialog = sdk.getComponent("views.dialogs.VerificationRequestDialog");
} else { Modal.createTrackedDialog('Incoming Verification', '', VerificationRequestDialog, {
cli.on("crypto.verification.start", (verifier) => { verificationRequest: request,
const IncomingSasDialog = sdk.getComponent("views.dialogs.IncomingSasDialog");
Modal.createTrackedDialog('Incoming Verification', '', IncomingSasDialog, {
verifier,
}, null, /* priority = */ false, /* static = */ true); }, null, /* priority = */ false, /* static = */ true);
});
} }
});
// Fire the tinter right on startup to ensure the default theme is applied // Fire the tinter right on startup to ensure the default theme is applied
// A later sync can/will correct the tint to be the right value for the user // A later sync can/will correct the tint to be the right value for the user
const colorScheme = SettingsStore.getValue("roomColor"); const colorScheme = SettingsStore.getValue("roomColor");