diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-24 15:12:55 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2017-05-24 15:12:55 -0400 |
| commit | f07af448fa11330db93dd7ddcabac37ef9e014c7 (patch) | |
| tree | 1b52a4f73d674a48258c2f14c94117b96ca4a678 /Emby.Server.Implementations/Session/SessionManager.cs | |
| parent | 27c3acb2bfde9025c33f584c759a4038020cb702 (diff) | |
update main projects
Diffstat (limited to 'Emby.Server.Implementations/Session/SessionManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Session/SessionManager.cs | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs index 7031ad770..6b3d2dc52 100644 --- a/Emby.Server.Implementations/Session/SessionManager.cs +++ b/Emby.Server.Implementations/Session/SessionManager.cs @@ -30,6 +30,7 @@ using System.Linq; using System.Threading; using System.Threading.Tasks; using MediaBrowser.Controller.Net; +using MediaBrowser.Model.Querying; using MediaBrowser.Model.Threading; namespace Emby.Server.Implementations.Session @@ -1071,7 +1072,11 @@ namespace Emby.Server.Implementations.Session Recursive = true, DtoOptions = new DtoOptions(false) { - EnableImages = false + EnableImages = false, + Fields = new List<ItemFields> + { + ItemFields.SortName + } } }); @@ -1090,7 +1095,11 @@ namespace Emby.Server.Implementations.Session IsFolder = false, DtoOptions = new DtoOptions(false) { - EnableImages = false + EnableImages = false, + Fields = new List<ItemFields> + { + ItemFields.SortName + } } }).ConfigureAwait(false); |
