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
It appears a recent twitter API change has passed over the header 'transfer-encoding': with chunked as a value breaking the API.
This modification I made appears to fix the issue:
foreach($reply_headers as $reply_header) { if ( strpos($reply_header, 'transfer-encoding') === false ) { header($reply_header); } }
The text was updated successfully, but these errors were encountered:
@jeverd01 where exactly you made this change? I mean which file?
Sorry, something went wrong.
Just created a pull request.
No branches or pull requests
It appears a recent twitter API change has passed over the header 'transfer-encoding': with chunked as a value breaking the API.
This modification I made appears to fix the issue:
foreach($reply_headers as $reply_header) {
if (
strpos($reply_header, 'transfer-encoding') === false
) {
header($reply_header);
}
}
The text was updated successfully, but these errors were encountered: