mirror of
https://github.com/Radarr/Radarr
synced 2024-12-28 10:51:48 +00:00
Fixed: FilterSettings not mapping due to no setter (System.Json)
This commit is contained in:
parent
9cf353b423
commit
3287ce6f90
1 changed files with 2 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue