Skip to content

Commit 6e206db

Browse files
committed
Woopsie, typo
1 parent cc0f7db commit 6e206db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dysnomia.Common.WebAPIWrapper/Helpers/WhateverToStringConverter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace Dysnomia.Common.WebAPIWrapper.Helpers {
66
public class WhateverToStringConverter : JsonConverter<string> {
77
public override string Read(ref Utf8JsonReader reader, Type type, JsonSerializerOptions options) {
88
if (reader.TokenType == JsonTokenType.Number) {
9-
return reader.GetUInt64().ToString();
9+
return reader.GetInt64().ToString();
1010
}
1111

1212
if (reader.TokenType == JsonTokenType.String) {

0 commit comments

Comments
 (0)