fixed Episode.ToString() bug

This commit is contained in:
kay.one 2011-04-22 13:59:43 -07:00
commit 680ea45839
3 changed files with 2 additions and 6 deletions

View file

@ -40,9 +40,5 @@ namespace NzbDrone.Core.Repository
[SubSonicToManyRelation]
public virtual List<History> Histories { get; protected set; }
public override string ToString()
{
return String.Format("[Episode: '{0} S{1:00}E{2:00}']", Series.Title, SeasonNumber, EpisodeNumber);
}
}
}