Skip to content

Commit

Permalink
Merge pull request #11 from waifuvault/fix-file-deserialize
Browse files Browse the repository at this point in the history
Change deserializer for numeric retention to int64, bump version
  • Loading branch information
nakedmcse authored Sep 11, 2024
2 parents 008f89e + 0384121 commit e7f8a61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion models.cs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public class StringConverter : JsonConverter<string>
{
if (reader.TokenType == JsonTokenType.Number)
{
return reader.GetInt32().ToString();
return reader.GetInt64().ToString();
}
else if (reader.TokenType == JsonTokenType.String)
{
Expand Down
2 changes: 1 addition & 1 deletion waifuVault-csharp-api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<PackageId>Waifuvault</PackageId>
<Version>1.3.6</Version>
<Version>1.3.7</Version>
<Authors>Walker Aldridge (walker@waifuvault.moe)</Authors>
<Company>waifuvault.moe</Company>
<PackageTags>waifuvault;temp file hosting;waifu;vault</PackageTags>
Expand Down

0 comments on commit e7f8a61

Please sign in to comment.