Better UI messaging when searching for all specials in a series

Fixed: Specials season search UI messaging
Closes #881
pull/4/head
Mark McDowall 9 years ago
parent c9a36fe4b2
commit d37b24cd0b

@ -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));
}
}

Loading…
Cancel
Save