mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-01 05:14:52 +01:00
Fixed: Null Season results in "S" query instead of no query
This commit is contained in:
parent
f85235d214
commit
74b2772d7f
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@ public override bool RssSearch
|
|||
|
||||
private string GetEpisodeSearchString()
|
||||
{
|
||||
if (Season == 0)
|
||||
if (Season == null || Season == 0)
|
||||
{
|
||||
return string.Empty;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue