mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02: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()
|
private string GetEpisodeSearchString()
|
||||||
{
|
{
|
||||||
if (Season == 0)
|
if (Season == null || Season == 0)
|
||||||
{
|
{
|
||||||
return string.Empty;
|
return string.Empty;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user