aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2019-12-10 22:28:44 +0900
committerGitHub <noreply@github.com>2019-12-10 22:28:44 +0900
commitdee3076eaf331a8e3e4b220c34491f713914fbc0 (patch)
tree0f604975ad10de0f6e66234c5f1a36a21c113ea8 /MediaBrowser.Controller/Entities/InternalItemsQuery.cs
parentb5d0bd0d764982c8df2c341c1f38c4d0636409c3 (diff)
parenta2c35e6dba02f068a3f06e5a4e4964e6539069d1 (diff)
Merge pull request #1923 from Bond-009/random
Don't shuffle some types by default
Diffstat (limited to 'MediaBrowser.Controller/Entities/InternalItemsQuery.cs')
-rw-r--r--MediaBrowser.Controller/Entities/InternalItemsQuery.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
index 78f859069..bd96059e3 100644
--- a/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
+++ b/MediaBrowser.Controller/Entities/InternalItemsQuery.cs
@@ -155,7 +155,7 @@ namespace MediaBrowser.Controller.Entities
public bool EnableGroupByMetadataKey { get; set; }
public bool? HasChapterImages { get; set; }
- public ValueTuple<string, SortOrder>[] OrderBy { get; set; }
+ public IReadOnlyList<(string, SortOrder)> OrderBy { get; set; }
public DateTime? MinDateCreated { get; set; }
public DateTime? MinDateLastSaved { get; set; }