Removed unnecessary IsDailyFlag from episode.cs

This commit is contained in:
kay.one 2011-06-17 23:39:14 -07:00
commit a12e148d54
2 changed files with 5 additions and 19 deletions

View file

@ -24,12 +24,6 @@ namespace NzbDrone.Core.Repository
public Boolean Ignored { get; set; }
[Ignore]
public Boolean IsDailyEpisode
{
get { return EpisodeNumber == 0; }
}
/// <summary>
/// Gets or sets the grab date.
/// </summary>
@ -77,8 +71,8 @@ namespace NzbDrone.Core.Repository
{
string seriesTitle = Series == null ? "[NULL]" : Series.Title;
if (IsDailyEpisode)
return string.Format("{0} - {1}", seriesTitle, AirDate.Date);
//if (IsDailyEpisode)
// return string.Format("{0} - {1}", seriesTitle, AirDate.Date);
return string.Format("{0} - S{1:00}E{2:00}", seriesTitle, SeasonNumber, EpisodeNumber);
}