Better messages when searching for daily episodes

This commit is contained in:
Mark McDowall
2013-01-16 23:29:43 -08:00
parent e17ed8c0ad
commit 2d21ee67e1
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -77,8 +77,8 @@ namespace NzbDrone.Core.Repository
{
string seriesTitle = Series == null ? "[NULL]" : Series.Title;
//if (IsDailyEpisode)
// return string.Format("{0} - {1}", seriesTitle, AirDate.Date);
if (Series != null && Series.IsDaily && AirDate.HasValue)
return string.Format("{0} - {1:yyyy-MM-dd}", seriesTitle, AirDate.Value);
return string.Format("{0} - S{1:00}E{2:00}", seriesTitle, SeasonNumber, EpisodeNumber);
}