1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Fix namespace for StringConverter

This commit is contained in:
Qstick 2020-08-16 01:19:23 -04:00
parent 0ef9d28a73
commit 547c044dc6
2 changed files with 19 additions and 15 deletions

View File

@ -2,25 +2,28 @@
using System.Text.Json; using System.Text.Json;
using System.Text.Json.Serialization; using System.Text.Json.Serialization;
public class StringConverter : JsonConverter<string> namespace NzbDrone.Core.Datastore.Converters
{ {
public override string Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) public class StringConverter : JsonConverter<string>
{ {
if (reader.TokenType == JsonTokenType.Number) public override string Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
{ {
var stringValue = reader.GetInt32(); if (reader.TokenType == JsonTokenType.Number)
return stringValue.ToString(); {
} var stringValue = reader.GetInt32();
else if (reader.TokenType == JsonTokenType.String) return stringValue.ToString();
{ }
return reader.GetString(); else if (reader.TokenType == JsonTokenType.String)
{
return reader.GetString();
}
throw new System.Text.Json.JsonException();
} }
throw new System.Text.Json.JsonException(); public override void Write(Utf8JsonWriter writer, string value, JsonSerializerOptions options)
} {
writer.WriteStringValue(value);
public override void Write(Utf8JsonWriter writer, string value, JsonSerializerOptions options) }
{
writer.WriteStringValue(value);
} }
} }

View File

@ -5,6 +5,7 @@
using Dapper; using Dapper;
using FluentMigrator; using FluentMigrator;
using NzbDrone.Common.Extensions; using NzbDrone.Common.Extensions;
using NzbDrone.Core.Datastore.Converters;
using NzbDrone.Core.Datastore.Migration.Framework; using NzbDrone.Core.Datastore.Migration.Framework;
namespace NzbDrone.Core.Datastore.Migration namespace NzbDrone.Core.Datastore.Migration