Fixed sort in HistoryRepository
This commit is contained in:
parent
b5e734b9e5
commit
f0ca636654
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue