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
  • Loading branch information
claudiamurialdo committed Oct 3, 2024
1 parent 5f67027 commit c31bc07
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 @@ -2400,7 +2400,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 c31bc07

Please sign in to comment.