Skip to content

Commit

Permalink
Updated json deserilzation
Browse files Browse the repository at this point in the history
  • Loading branch information
rickardliljeberg committed Jul 5, 2022
1 parent 6ec986b commit a7d9121
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<package >
<metadata>
<id>Evercate.Microsoft.Scim</id>
<version>1.0.7</version>
<version>1.0.9</version>
<title>Evercate scim based on Microsoft reference code</title>
<authors>Evercate AB</authors>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>A direkt fork from Microsoft's reference scim code. Only neccesary updates will be done</description>
<releaseNotes>update name.formatted</releaseNotes>
<releaseNotes></releaseNotes>
<copyright>Copyright 2020</copyright>
<tags>microsoft evercate scim</tags>
<dependencies>
Expand Down Expand Up @@ -48,6 +48,8 @@








Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,8 @@ public class TrustedJsonFactory : JsonFactory
{
public override Dictionary<string, object> Create(string json)
{
Dictionary<string, object> result =
(Dictionary<string, object>)JsonConvert.DeserializeObject(
json);
Dictionary<string, object> result = JsonConvert.DeserializeObject<Dictionary<string, object>>(json);

return result;
}

Expand Down

0 comments on commit a7d9121

Please sign in to comment.