gazuntype / graphQL-client-unity

This repository houses a unitypackage that can be included in your Unity Project to enable it communicate with a graphQL server.
Apache License 2.0
292 stars 50 forks source link

String including UTF-8 characters not working #35

Open paulwoerks opened 2 years ago

paulwoerks commented 2 years ago

I've got problems pushing Strings including special characters to our server. Special chars like "Ä" simply convert to "?" when pushing a mutation. Our server uses UTF-8 so the problem must occure on the serialization process of the client or something.

I'd like to include UTF-8, characters. Is there any fix to this? Thanks in advance.

dlorddd commented 2 years ago

I have submitted a pull request to fix this behavior. Feel free to copy. It is not a lot of changes.

33