-
Notifications
You must be signed in to change notification settings - Fork 394
Closed
Labels
next-breaking-releaseIssues that are worth doing but need to wait for a breaking version bumpIssues that are worth doing but need to wait for a breaking version bump
Description
Issue decoding special characters such as:
ã --> didn't test with any other special chars, but should be happening too. Such as ç, õ, á, à, ó, í, and so on...
Code:
final response = await http.get(
serverUrl,
),
headers: {
"accept": "application/json;",
},
);
print(response.body); // prints { "title":"Não encontrado" } -- should be {"title":"Não encontrado"}
Expected:
{ "title": "Não encontrado" }
Reality:
{ "title":"Não encontrado" }
smsalisbury, florianschndlr, ayame113, juanmisak, sccreeper and 2 more
Metadata
Metadata
Assignees
Labels
next-breaking-releaseIssues that are worth doing but need to wait for a breaking version bumpIssues that are worth doing but need to wait for a breaking version bump