-
Notifications
You must be signed in to change notification settings - Fork 140
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
JsonOps.convertTo explodes on JsonNulls #62
Comments
The workaround i'm using in my current project (making a |
fails with
It appears there is a check for
instanceof JsonNull
s:DataFixerUpper/src/main/java/com/mojang/serialization/JsonOps.java
Lines 47 to 50 in c100ef0
But it doesn't work, because
DynamicOps#getJsonValues
, as well as other methods likegetStream
andgetList
, filterJsonNull
s to actualnull
s.DataFixerUpper/src/main/java/com/mojang/serialization/JsonOps.java
Line 218 in c100ef0
The text was updated successfully, but these errors were encountered: