We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e68a68e commit 41bbbd1Copy full SHA for 41bbbd1
1 file changed
JSONAPI/Core/MetadataManager.cs
@@ -44,7 +44,9 @@ internal void SetMetaForProperty(object deserialized, PropertyInfo prop, object
44
meta = new Dictionary<string, object>();
45
cwt.Add(deserialized, meta);
46
}
47
- meta.Add(prop.Name, value);
+ if (!meta.ContainsKey(prop.Name)) // Temporary fix for non-standard Id reprecussions...this internal implementation will change soon anyway.
48
+ meta.Add(prop.Name, value);
49
+
50
51
52
0 commit comments