mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-19 22:21:52 +01:00
Fixed: Set default null value for Genre, Publisher, Douban parameters
This commit is contained in:
parent
232a6efd0d
commit
5a278f4e9d
1 changed files with 3 additions and 0 deletions
|
|
@ -152,6 +152,7 @@ private Dictionary<string, object> GetQueryVariableDefaults(SearchCriteriaBase s
|
|||
variables[".Query.Offset"] = searchCriteria.Offset?.ToString() ?? null;
|
||||
variables[".Query.Extended"] = null;
|
||||
variables[".Query.APIKey"] = null;
|
||||
variables[".Query.Genre"] = null;
|
||||
|
||||
//Movie
|
||||
variables[".Query.Movie"] = null;
|
||||
|
|
@ -168,6 +169,7 @@ private Dictionary<string, object> GetQueryVariableDefaults(SearchCriteriaBase s
|
|||
variables[".Query.TVRageID"] = null;
|
||||
variables[".Query.TVMazeID"] = null;
|
||||
variables[".Query.TraktID"] = null;
|
||||
variables[".Query.DoubanID"] = null;
|
||||
variables[".Query.Episode"] = null;
|
||||
|
||||
//Music
|
||||
|
|
@ -179,6 +181,7 @@ private Dictionary<string, object> GetQueryVariableDefaults(SearchCriteriaBase s
|
|||
//Book
|
||||
variables[".Query.Author"] = null;
|
||||
variables[".Query.Title"] = null;
|
||||
variables[".Query.Publisher"] = null;
|
||||
|
||||
return variables;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue