We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Content-Length is now content-length for some reason.
Took a while to debug, but now finally works. Only changed for the now-playing endpoint though.
So I changed line 731 the one in charge of checking for the content length to account for both versions of the header name:
} else if (startsWith(buff, "Content-Length:") || startsWith(buff, "content-length:")) {
The text was updated successfully, but these errors were encountered:
Good to know, I'll make the changes ASAP. Thanks!
Sorry, something went wrong.
No branches or pull requests
Content-Length is now content-length for some reason.
Took a while to debug, but now finally works. Only changed for the now-playing endpoint though.
So I changed line 731 the one in charge of checking for the content length to account for both versions of the header name:
} else if (startsWith(buff, "Content-Length:") || startsWith(buff, "content-length:")) {
The text was updated successfully, but these errors were encountered: