1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-11-25 05:23:13 +03:00

Merge pull request #1010 from matrix-org/jryans/user-settings-toggle-3pid

Fix POST body for v2 IS requests
This commit is contained in:
J. Ryan Stinnett
2019-08-08 15:17:53 +01:00
committed by GitHub

View File

@@ -1769,7 +1769,8 @@ MatrixBaseApis.prototype.requestEmailToken = async function(
try {
const response = await this._http.idServerRequest(
undefined, "POST", "/validate/email/requestToken",
params, httpApi.PREFIX_IDENTITY_V2, identityAccessToken,
JSON.stringify(params), httpApi.PREFIX_IDENTITY_V2,
identityAccessToken,
);
// TODO: Fold callback into above call once v1 path below is removed
if (callback) callback(null, response);
@@ -1824,7 +1825,8 @@ MatrixBaseApis.prototype.submitMsisdnToken = async function(
try {
return await this._http.idServerRequest(
undefined, "POST", "/validate/msisdn/submitToken",
params, httpApi.PREFIX_IDENTITY_V2, identityAccessToken,
JSON.stringify(params), httpApi.PREFIX_IDENTITY_V2,
identityAccessToken,
);
} catch (err) {
if (err.cors === "rejected" || err.httpStatus === 404) {