diff --git a/src/NzbDrone.Core/NetImport/TMDb/Popular/TMDbPopularSettings.cs b/src/NzbDrone.Core/NetImport/TMDb/Popular/TMDbPopularSettings.cs index f20d6b5af..1de77f915 100644 --- a/src/NzbDrone.Core/NetImport/TMDb/Popular/TMDbPopularSettings.cs +++ b/src/NzbDrone.Core/NetImport/TMDb/Popular/TMDbPopularSettings.cs @@ -1,4 +1,4 @@ -using FluentValidation; +using FluentValidation; using NzbDrone.Core.Annotations; namespace NzbDrone.Core.NetImport.TMDb.Popular @@ -27,6 +27,6 @@ public TMDbPopularSettings() public int TMDbListType { get; set; } [FieldDefinition(2)] - public TMDbFilterSettings FilterCriteria { get; } = new TMDbFilterSettings(); + public TMDbFilterSettings FilterCriteria { get; set; } = new TMDbFilterSettings(); } }