You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-19 05:22:13 +03:00
Disable binding 3PIDs when adding to account
Binding 3PIDs on the IS is now handled by a separate step in the Discovery section of settings. Fixes https://github.com/vector-im/riot-web/issues/10510
This commit is contained in:
@@ -164,7 +164,7 @@ export default class EmailAddresses extends React.Component {
|
|||||||
const task = new AddThreepid();
|
const task = new AddThreepid();
|
||||||
this.setState({verifying: true, continueDisabled: true, addTask: task});
|
this.setState({verifying: true, continueDisabled: true, addTask: task});
|
||||||
|
|
||||||
task.addEmailAddress(email, true).then(() => {
|
task.addEmailAddress(email, false).then(() => {
|
||||||
this.setState({continueDisabled: false});
|
this.setState({continueDisabled: false});
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.error("Unable to add email address " + email + " " + err);
|
console.error("Unable to add email address " + email + " " + err);
|
||||||
|
|||||||
@@ -161,7 +161,7 @@ export default class PhoneNumbers extends React.Component {
|
|||||||
const task = new AddThreepid();
|
const task = new AddThreepid();
|
||||||
this.setState({verifying: true, continueDisabled: true, addTask: task});
|
this.setState({verifying: true, continueDisabled: true, addTask: task});
|
||||||
|
|
||||||
task.addMsisdn(phoneCountry, phoneNumber, true).then((response) => {
|
task.addMsisdn(phoneCountry, phoneNumber, false).then((response) => {
|
||||||
this.setState({continueDisabled: false, verifyMsisdn: response.msisdn});
|
this.setState({continueDisabled: false, verifyMsisdn: response.msisdn});
|
||||||
}).catch((err) => {
|
}).catch((err) => {
|
||||||
console.error("Unable to add phone number " + phoneNumber + " " + err);
|
console.error("Unable to add phone number " + phoneNumber + " " + err);
|
||||||
|
|||||||
Reference in New Issue
Block a user