From 07613092b4ccb0b4c0a4691e07bb56f616e3a0d5 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Tue, 14 May 2013 07:36:23 -0700 Subject: [PATCH] Renamed HistoryRepo GetBestInHistory --- NzbDrone.Core/History/HistoryRepository.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NzbDrone.Core/History/HistoryRepository.cs b/NzbDrone.Core/History/HistoryRepository.cs index e135893c1..c3ad41da3 100644 --- a/NzbDrone.Core/History/HistoryRepository.cs +++ b/NzbDrone.Core/History/HistoryRepository.cs @@ -12,7 +12,7 @@ namespace NzbDrone.Core.History public interface IHistoryRepository : IBasicRepository { void Trim(); - List GetBestQualityInHistory(int episodeId); + List GetEpisodeHistory(int episodeId); PagingSpec Paged(PagingSpec pagingSpec); } @@ -29,7 +29,7 @@ namespace NzbDrone.Core.History Delete(c=> c.Date < cutoff); } - public List GetBestQualityInHistory(int episodeId) + public List GetEpisodeHistory(int episodeId) { var history = Query.Where(c => c.EpisodeId == episodeId);