diff options
| author | Vasily <JustAMan@users.noreply.github.com> | 2019-02-27 17:29:12 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-02-27 17:29:12 +0300 |
| commit | 8c2af50170ea2a7964a6ad40bbe60026cfa625b0 (patch) | |
| tree | 8cf813cc47dbc9c9fcc661fa0ba732022860a89b /MediaBrowser.Api/FilterService.cs | |
| parent | 9651a78b0c42958f01b01aee78e661125ad1970d (diff) | |
| parent | 1731bf7372a13ea8c656eb9f895508b7b4c66784 (diff) | |
Merge pull request #1011 from Bond-009/order
Don't try to order the response the same as the request
Diffstat (limited to 'MediaBrowser.Api/FilterService.cs')
| -rw-r--r-- | MediaBrowser.Api/FilterService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Api/FilterService.cs b/MediaBrowser.Api/FilterService.cs index 9caf07cea..201efe737 100644 --- a/MediaBrowser.Api/FilterService.cs +++ b/MediaBrowser.Api/FilterService.cs @@ -1,4 +1,5 @@ using System; +using System.Collections.Generic; using System.Linq; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.Library; @@ -180,7 +181,7 @@ namespace MediaBrowser.Api return ToOptimizedResult(filters); } - private QueryFiltersLegacy GetFilters(BaseItem[] items) + private QueryFiltersLegacy GetFilters(IReadOnlyCollection<BaseItem> items) { var result = new QueryFiltersLegacy(); |
