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) {
|
||||
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) {
|
||||
|
|
Reference in a new issue