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

pull/65/head
Qstick 3 years ago
parent f85235d214
commit 74b2772d7f

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

Loading…
Cancel
Save