Fixed an issue when trying to import files

This commit is contained in:
Mark McDowall 2013-07-13 01:11:04 -07:00
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;
}
}
}