diff --git a/src/NzbDrone.Core/IndexerSearch/Definitions/SpecialEpisodeSearchCriteria.cs b/src/NzbDrone.Core/IndexerSearch/Definitions/SpecialEpisodeSearchCriteria.cs index ccb548188..2b5c0bc0c 100644 --- a/src/NzbDrone.Core/IndexerSearch/Definitions/SpecialEpisodeSearchCriteria.cs +++ b/src/NzbDrone.Core/IndexerSearch/Definitions/SpecialEpisodeSearchCriteria.cs @@ -1,4 +1,4 @@ -using System; +using System.Linq; namespace NzbDrone.Core.IndexerSearch.Definitions { @@ -8,6 +8,13 @@ namespace NzbDrone.Core.IndexerSearch.Definitions public override string ToString() { + var episodeTitles = EpisodeQueryTitles.ToList(); + + if (episodeTitles.Count > 0) + { + return string.Format("[{0}] Specials", Series.Title); + } + return string.Format("[{0} : {1}]", Series.Title, string.Join(",", EpisodeQueryTitles)); } }