Skip to content

Commit

Permalink
Fix error with deserialization of property data types that may contai…
Browse files Browse the repository at this point in the history
…n null values (#1073)
  • Loading branch information
claudiamurialdo committed Oct 23, 2024
1 parent 9b9b7d7 commit f2bf5bf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion dotnet/src/dotnetframework/GxClasses/Domain/GxCollections.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2402,7 +2402,8 @@ public void FromJSONObject(dynamic obj)
{
lock (syncObj)
{
this.Set(item.Key.ToString(), item.Value.ToString());
if (item.Key != null && item.Value != null)
this.Set(item.Key.ToString(), item.Value.ToString());
}
}
}
Expand Down

0 comments on commit f2bf5bf

Please sign in to comment.