mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-04 06:48:35 +01:00
Fix seasons random (#13224)
Sorting was always enabled so removed the `enableSorting` parameter in QueryResult method.
This commit is contained in:
@@ -179,7 +179,7 @@ namespace MediaBrowser.Controller.Entities.TV
|
||||
|
||||
var items = GetEpisodes(user, query.DtoOptions, true).Where(filter);
|
||||
|
||||
return PostFilterAndSort(items, query, false);
|
||||
return PostFilterAndSort(items, query);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user