Skip to content

Commit

Permalink
fix Deserialize
Browse files Browse the repository at this point in the history
  • Loading branch information
pnwpedro committed Jan 4, 2024
1 parent e83aea8 commit 4a0c336
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Fauna/Serialization/Serializer.Deserialize.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ public static T Deserialize<T>(SerializationContext context, ref Utf8FaunaReader
allProps["coll"] = coll;
break;
case "exists":
exists = DeserializeValueInternal<bool>(ref reader, context);
exists = Deserialize<bool>(context, ref reader);
allProps["exists"] = exists;
break;
case "reason":
reason = DeserializeValueInternal<string>(ref reader, context);
reason = Deserialize<string>(context, ref reader);
allProps["reason"] = reason;
break;
default:
Expand Down

0 comments on commit 4a0c336

Please sign in to comment.