You've already forked matrix-js-sdk
mirror of
https://github.com/matrix-org/matrix-js-sdk.git
synced 2025-11-28 05:03:59 +03:00
More paranoia when handling responses
This commit is contained in:
@@ -111,6 +111,11 @@ module.exports.MatrixHttpApi.prototype = {
|
||||
case global.XMLHttpRequest.DONE:
|
||||
clearTimeout(xhr.timeout_timer);
|
||||
|
||||
if (!xhr.responseText) {
|
||||
cb(new Error('No response body.'));
|
||||
return;
|
||||
}
|
||||
|
||||
var resp = JSON.parse(xhr.responseText);
|
||||
if (resp.content_uri === undefined) {
|
||||
cb(new Error('Bad response'));
|
||||
|
||||
Reference in New Issue
Block a user