removed sqo.

This commit is contained in:
kay.one
2013-03-23 21:16:00 -07:00
parent 7717e32729
commit 1a4f3fad25
64 changed files with 292 additions and 1323 deletions

View File

@@ -2,7 +2,7 @@
using NzbDrone.Core.Datastore;
using NzbDrone.Core.MediaFiles;
using NzbDrone.Core.Model;
using Sqo.Attributes;
namespace NzbDrone.Core.Tv
{
@@ -18,7 +18,7 @@ namespace NzbDrone.Core.Tv
//Todo: Since we're displaying next airing relative to the user's time zone we may want to store this as UTC (with airtime + UTC offset)
public DateTime? AirDate { get; set; }
[Text]
public string Overview { get; set; }
public Boolean Ignored { get; set; }
@@ -85,7 +85,7 @@ namespace NzbDrone.Core.Tv
{
string seriesTitle = Series == null ? "[NULL]" : Series.Title;
if (Series != null && Series.SeriesTypes == SeriesTypes.Daily && AirDate.HasValue)
if (Series != null && Series.SeriesType == SeriesTypes.Daily && 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);