Fixed: Null Season results in "S" query instead of no query

This commit is contained in:
Qstick 2021-05-20 22:00:46 -04:00
parent f85235d214
commit 74b2772d7f

View file

@ -34,7 +34,7 @@ namespace NzbDrone.Core.IndexerSearch.Definitions
private string GetEpisodeSearchString()
{
if (Season == 0)
if (Season == null || Season == 0)
{
return string.Empty;
}