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
dio
5.5
Web
Default Dio
flutter doctor -v
No response
Date field is in RFC 2616 format, it includes a comma in the value. eg
Date
Date => "Tue, 09 Jul 2024 19:39:05 GMT"
dio_web_adapter appears to be using
headers: xhr.responseHeaders.map((k, v) => MapEntry(k, v.split(','))),
The full value not split.
"date" header as "Tue"
The text was updated successfully, but these errors were encountered:
@AlexV525 Do your changes here fix this issue?
dio/plugins/web_adapter/lib/src/adapter.dart
Lines 312 to 333 in 679a144
Sorry, something went wrong.
Is there a working version for the implementation?
No branches or pull requests
Package
dio
Version
5.5
Operating-System
Web
Adapter
Default Dio
Output of
flutter doctor -v
No response
Dart Version
No response
Steps to Reproduce
Date
field is in RFC 2616 format, it includes a comma in the value. egDate => "Tue, 09 Jul 2024 19:39:05 GMT"
dio_web_adapter appears to be using
Expected Result
The full value not split.
Actual Result
"date" header as "Tue"
The text was updated successfully, but these errors were encountered: