Post JSON correctly to homeserver

Fixes https://github.com/turt2live/matrix-dimension/issues/284
This commit is contained in:
Travis Ralston 2019-06-27 18:36:28 -06:00
parent 4f92d56026
commit d021974a22

View File

@ -192,7 +192,8 @@ export async function doClientApiCall(method: string, endpoint: string, query?:
"Content-Type": contentType,
};
} else {
requestOptions["json"] = body;
requestOptions["json"] = true;
requestOptions["body"] = body;
}
return new Promise((resolve, reject) => {