mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 13:57:11 -04: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 @@ namespace NzbDrone.Core.IndexerSearch.Definitions
|
||||||
|
|
||||||
private string GetEpisodeSearchString()
|
private string GetEpisodeSearchString()
|
||||||
{
|
{
|
||||||
if (Season == 0)
|
if (Season == null || Season == 0)
|
||||||
{
|
{
|
||||||
return string.Empty;
|
return string.Empty;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue