Skip to content

Commit

Permalink
fixed wrong decoding of special characters
Browse files Browse the repository at this point in the history
  • Loading branch information
Benimautner committed Aug 4, 2024
1 parent 4771de1 commit 3f8f76d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/api/client.dart
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ class Client {
Response? _handleResponse(http.Response response) {
_handleResponseErrors(response);
return Response(
_decoder.convert(response.body), response.statusCode, response.headers);
_decoder.convert(utf8.decode(response.bodyBytes)), response.statusCode, response.headers);
}
}

Expand Down

0 comments on commit 3f8f76d

Please sign in to comment.