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
In lib/Net/HTTP/Methods.pm line 528, you can find
die "Missing newline after chunk data: '$line'" if !defined($line) || $line ne "";
On an transmission error, we got
Use of uninitialized value $line in concatenation (.) or string at Net/HTTP/Methods.pm line 528.
The logic seems incorrect:
die "Missing newline after chunk data: '$line'" if defined $line && $line ne '';
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In lib/Net/HTTP/Methods.pm line 528, you can find
On an transmission error, we got
The logic seems incorrect:
The text was updated successfully, but these errors were encountered: