This commit is contained in:
David Baker 2019-10-09 11:28:16 +01:00
parent 2040587826
commit 1c207f3b55

View file

@ -188,20 +188,11 @@ export default class AddThreepid {
// pop up an interactive auth dialog // pop up an interactive auth dialog
const InteractiveAuthDialog = sdk.getComponent("dialogs.InteractiveAuthDialog"); const InteractiveAuthDialog = sdk.getComponent("dialogs.InteractiveAuthDialog");
return new Promise((resolve, reject) => { Modal.createTrackedDialog('Add Email', '', InteractiveAuthDialog, {
Modal.createTrackedDialog('Add Email', '', InteractiveAuthDialog, { title: _t("Add Email Address"),
title: _t("Add Email Address"), matrixClient: MatrixClientPeg.get(),
matrixClient: MatrixClientPeg.get(), authData: e.data,
authData: e.data, makeRequest: this._makeAddThreepidOnlyRequest,
makeRequest: this._makeAddThreepidOnlyRequest,
onFinished: (success) => {
if (success) {
resolve();
} else {
reject();
}
},
});
}); });
} }
} }
@ -289,20 +280,11 @@ export default class AddThreepid {
// pop up an interactive auth dialog // pop up an interactive auth dialog
const InteractiveAuthDialog = sdk.getComponent("dialogs.InteractiveAuthDialog"); const InteractiveAuthDialog = sdk.getComponent("dialogs.InteractiveAuthDialog");
return new Promise((resolve, reject) => { Modal.createTrackedDialog('Add MSISDN', '', InteractiveAuthDialog, {
Modal.createTrackedDialog('Add MSISDN', '', InteractiveAuthDialog, { title: _t("Add Phone Number"),
title: _t("Add Phone Number"), matrixClient: MatrixClientPeg.get(),
matrixClient: MatrixClientPeg.get(), authData: e.data,
authData: e.data, makeRequest: this._makeAddThreepidOnlyRequest,
makeRequest: this._makeAddThreepidOnlyRequest,
onFinished: (success) => {
if (success) {
resolve();
} else {
reject();
}
},
});
}); });
} }
} }