removed IBN sorting from the api

This commit is contained in:
LukePulverenti 2013-03-05 18:11:45 -05:00
parent 2d70f71a95
commit 33904f51f5
1 changed files with 1 additions and 2 deletions

View File

@ -1,5 +1,4 @@
using MediaBrowser.Common.Implementations.HttpServer;
using MediaBrowser.Controller;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Library;
using MediaBrowser.Model.Dto;
@ -88,7 +87,7 @@ namespace MediaBrowser.Api.UserLibrary
var resultItems = await Task.WhenAll(tasks).ConfigureAwait(false);
result.Items = resultItems.Where(i => i != null).OrderByDescending(i => i.SortName ?? i.Name).ToArray();
result.Items = resultItems.Where(i => i != null).ToArray();
return result;
}