Fixed an issue when trying to import files

This commit is contained in:
Mark McDowall
2013-07-13 01:11:04 -07:00
parent 389201a9eb
commit e8238fb03a
5 changed files with 12 additions and 20 deletions

View File

@@ -17,5 +17,10 @@ namespace NzbDrone.Core.Parser.Model
public QualityModel Quality { get; set; }
public int SeasonNumber { get { return Episodes.Select(c => c.SeasonNumber).Distinct().Single(); } }
public override string ToString()
{
return Path;
}
}
}