diff --git a/src/NzbDrone.Api/Config/NamingConfigModule.cs b/src/NzbDrone.Api/Config/NamingConfigModule.cs index 3cecff639..37b7d4835 100644 --- a/src/NzbDrone.Api/Config/NamingConfigModule.cs +++ b/src/NzbDrone.Api/Config/NamingConfigModule.cs @@ -36,7 +36,7 @@ namespace NzbDrone.Api.Config Get["/samples"] = x => GetExamples(this.Bind()); - SharedValidator.RuleFor(c => c.MultiEpisodeStyle).InclusiveBetween(0, 3); + SharedValidator.RuleFor(c => c.MultiEpisodeStyle).InclusiveBetween(0, 4); SharedValidator.RuleFor(c => c.StandardEpisodeFormat).ValidEpisodeFormat(); SharedValidator.RuleFor(c => c.DailyEpisodeFormat).ValidDailyEpisodeFormat(); SharedValidator.RuleFor(c => c.AnimeEpisodeFormat).ValidAnimeEpisodeFormat(); diff --git a/src/NzbDrone.Core/Datastore/Migration/069_quality_proper.cs b/src/NzbDrone.Core/Datastore/Migration/069_quality_proper.cs index f20ba69e0..6008faa00 100644 --- a/src/NzbDrone.Core/Datastore/Migration/069_quality_proper.cs +++ b/src/NzbDrone.Core/Datastore/Migration/069_quality_proper.cs @@ -31,7 +31,7 @@ namespace NzbDrone.Core.Datastore.Migration { var currentStandard = configReader.GetString(0); var currentDaily = configReader.GetString(1); - var currentAnime = configReader.GetString(1); + var currentAnime = configReader.GetString(2); var newStandard = GetNewFormat(currentStandard); var newDaily = GetNewFormat(currentDaily);