mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 03:25:12 +01:00
set responseType after calling open
This commit is contained in:
parent
a61d7fc68a
commit
2ebce8eb7b
@ -37,10 +37,11 @@ class RequestResult {
|
||||
|
||||
function send(url, {method, headers, timeout, body, format}) {
|
||||
const xhr = new XMLHttpRequest();
|
||||
xhr.open(method, url);
|
||||
if (format === "buffer") {
|
||||
// important to call this after calling open
|
||||
xhr.responseType = "arraybuffer";
|
||||
}
|
||||
xhr.open(method, url);
|
||||
if (headers) {
|
||||
for(const [name, value] of headers.entries()) {
|
||||
xhr.setRequestHeader(name, value);
|
||||
|
Loading…
Reference in New Issue
Block a user