Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

replace is not defined, error thrown at var preProcessedHeaders = rawHeaders.replace(/\r?\n[\t ]+/g, ' '); #181

Open
datasmithadvtech opened this issue Apr 12, 2024 · 1 comment

Comments

@datasmithadvtech
Copy link

datasmithadvtech commented Apr 12, 2024

parseHeaders(rawHeaders) is called with following value for rawHeaders

{
"{\n "cache-control"": ""no-cache, no-store, max-age=0, must-revalidate","
}

i believe since this isn't an array, replace is undefined so this statement fails,

Note: xhr.getAllResponseHeaders() is not returning a array of all headers , there are about a dozen

var preProcessedHeaders = rawHeaders.replace(/\r?\n[\t ]+/g, ' ');

called by:
xhr.onload = function() {
var options = {
status: xhr.status,
statusText: xhr.statusText,
headers: parseHeaders(xhr.getAllResponseHeaders() || '')
};

passing

{
"{\n "cache-control"": ""no-cache, no-store, max-age=0, must-revalidate","
}

@datasmithadvtech
Copy link
Author

Screenshot 2024-04-12 at 11 14 12 AM Screenshot 2024-04-12 at 8 45 24 AM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant