forked from mystiq/hydrogen-web
make sure cors errors on setting headers don't fail sending the request
This commit is contained in:
parent
83cbe78cd6
commit
6bd777e7be
1 changed files with 5 additions and 1 deletions
|
@ -45,7 +45,11 @@ function createXhr(url, {method, headers, timeout, format, uploadProgress}) {
|
||||||
}
|
}
|
||||||
if (headers) {
|
if (headers) {
|
||||||
for(const [name, value] of headers.entries()) {
|
for(const [name, value] of headers.entries()) {
|
||||||
xhr.setRequestHeader(name, value);
|
try {
|
||||||
|
xhr.setRequestHeader(name, value);
|
||||||
|
} catch (err) {
|
||||||
|
console.info(`Could not set ${name} header: ${err.message}`);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (timeout) {
|
if (timeout) {
|
||||||
|
|
Loading…
Reference in a new issue