Fixed sort in HistoryRepository

This commit is contained in:
Mark McDowall 2020-04-09 22:58:42 -07:00
parent b5e734b9e5
commit f0ca636654
1 changed files with 1 additions and 3 deletions

View File

@ -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<History> GetBySeason(int seriesId, int seasonNumber, HistoryEventType? eventType)