Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/07613092b4ccb0b4c0a4691e07bb56f616e3a0d5 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Renamed HistoryRepo GetBestInHistory

pull/6/head
Mark McDowall 12 years ago
parent e851924417
commit 07613092b4

@ -12,7 +12,7 @@ namespace NzbDrone.Core.History
public interface IHistoryRepository : IBasicRepository<History>
{
void Trim();
List<QualityModel> GetBestQualityInHistory(int episodeId);
List<QualityModel> GetEpisodeHistory(int episodeId);
PagingSpec<History> Paged(PagingSpec<History> pagingSpec);
}
@ -29,7 +29,7 @@ namespace NzbDrone.Core.History
Delete(c=> c.Date < cutoff);
}
public List<QualityModel> GetBestQualityInHistory(int episodeId)
public List<QualityModel> GetEpisodeHistory(int episodeId)
{
var history = Query.Where(c => c.EpisodeId == episodeId);

Loading…
Cancel
Save