aboutsummaryrefslogtreecommitdiff
path: root/Emby.Dlna/ContentDirectory/ControlHandler.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-08-23 12:43:52 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-08-23 12:43:52 -0400
commit5ced09d169fa323a1db0d332cfbfed27b3e72c8c (patch)
treed389a4bda105b3c802640d0d084f87477a016a4f /Emby.Dlna/ContentDirectory/ControlHandler.cs
parenta38567e787a9b7c2b2f729c95103ef6ddb9344d2 (diff)
removed dead code
Diffstat (limited to 'Emby.Dlna/ContentDirectory/ControlHandler.cs')
-rw-r--r--Emby.Dlna/ContentDirectory/ControlHandler.cs18
1 files changed, 0 insertions, 18 deletions
diff --git a/Emby.Dlna/ContentDirectory/ControlHandler.cs b/Emby.Dlna/ContentDirectory/ControlHandler.cs
index 5ce1d1925..205f4e890 100644
--- a/Emby.Dlna/ContentDirectory/ControlHandler.cs
+++ b/Emby.Dlna/ContentDirectory/ControlHandler.cs
@@ -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,