-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
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
TinyJson does not properly serialize long data type #90
Comments
Hmmm this is an odd one. We use the TinyJson library from here. We'll have a look to see what we can do to sort it. |
Looks like it actually doesn't support most primitives (unsigned and signed, short, long, etc). I can create a PR in that repo if it would be helpful. |
@thegoldenmule That would be awesome if you have time 🙏 |
@novabyte The json PR has been merged to master btw. |
Ah yes - good reminder. I'll re-import that code into the .NET client so we can cut a release of the Unity client. |
I've updated the TinyJson library in the .NET client - heroiclabs/nakama-dotnet@651930a |
We've got a release planned for the .NET client code and will then bundle it into the next Unity client. |
This is resolved in the v2.5.0 release. |
Repro steps:
The Nakama TinyJson library does not properly support the
long
data type.We have switched to using Newtonsoft JSON which properly serializes/deserializes longs.
The text was updated successfully, but these errors were encountered: