diff --git a/src/NzbDrone.Core/History/HistoryRepository.cs b/src/NzbDrone.Core/History/HistoryRepository.cs index 78b803a9b..a7ca651e6 100644 --- a/src/NzbDrone.Core/History/HistoryRepository.cs +++ b/src/NzbDrone.Core/History/HistoryRepository.cs @@ -65,9 +65,7 @@ namespace NzbDrone.Core.History query.AndWhere(h => h.EventType == eventType); } - query.OrderByDescending(h => h.Date); - - return query; + return query.OrderByDescending(h => h.Date).ToList(); } public List GetBySeason(int seriesId, int seasonNumber, HistoryEventType? eventType)