Fixed up DownloadClient settings in UI

This commit is contained in:
Mark McDowall 2013-05-14 08:27:33 -07:00
commit 5b664afaf8
2 changed files with 2 additions and 22 deletions

View file

@ -51,7 +51,7 @@ namespace NzbDrone.Core.History
public virtual QualityModel GetBestQualityInHistory(int episodeId)
{
return _historyRepository.GetBestQualityInHistory(episodeId).OrderByDescending(q => q).FirstOrDefault();
return _historyRepository.GetEpisodeHistory(episodeId).OrderByDescending(q => q).FirstOrDefault();
}
public void Handle(EpisodeGrabbedEvent message)