mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-20 22:14:34 -04:00
Fixed: Null Season results in "S" query instead of no query
This commit is contained in:
@@ -34,7 +34,7 @@ namespace NzbDrone.Core.IndexerSearch.Definitions
|
||||
|
||||
private string GetEpisodeSearchString()
|
||||
{
|
||||
if (Season == 0)
|
||||
if (Season == null || Season == 0)
|
||||
{
|
||||
return string.Empty;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user