removed dead code

This commit is contained in:
Luke Pulverenti
2017-08-23 12:43:52 -04:00
parent a38567e787
commit 5ced09d169
2 changed files with 0 additions and 32 deletions

View File

@@ -508,23 +508,6 @@ namespace Emby.Dlna.ContentDirectory
if (stubType.HasValue)
{
if (stubType.Value == StubType.People)
{
var items = _libraryManager.GetPeopleItems(new InternalPeopleQuery
{
ItemId = item.Id
});
var result = new QueryResult<ServerItem>
{
Items = items.Select(i => new ServerItem(i)).ToArray(items.Count),
TotalRecordCount = items.Count
};
return ApplyPaging(result, startIndex, limit);
}
var person = item as Person;
if (person != null)
{
@@ -1356,7 +1339,6 @@ namespace Emby.Dlna.ContentDirectory
public enum StubType
{
Folder = 0,
People = 1,
Latest = 2,
Playlists = 3,
Albums = 4,