aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/UserLibrary/UserLibraryService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-07-01 17:13:32 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-07-01 17:13:32 -0400
commit3bef6ead9cec4c33d43b6348ae4fc33c9b70316a (patch)
tree1c794728ddb74d046793dbde7fc590d6feee37f1 /MediaBrowser.Api/UserLibrary/UserLibraryService.cs
parent970504abdf237a2c404024c6978d5353ea915d03 (diff)
#514 - Support HLS seeking
Diffstat (limited to 'MediaBrowser.Api/UserLibrary/UserLibraryService.cs')
-rw-r--r--MediaBrowser.Api/UserLibrary/UserLibraryService.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Api/UserLibrary/UserLibraryService.cs b/MediaBrowser.Api/UserLibrary/UserLibraryService.cs
index 96bbd6dff..a1625d052 100644
--- a/MediaBrowser.Api/UserLibrary/UserLibraryService.cs
+++ b/MediaBrowser.Api/UserLibrary/UserLibraryService.cs
@@ -541,7 +541,8 @@ namespace MediaBrowser.Api.UserLibrary
if (series != null)
{
var dtos = series
- .GetRecursiveChildren(i => i is Episode && i.ParentIndexNumber.HasValue && i.ParentIndexNumber.Value == 0)
+ .GetRecursiveChildren()
+ .Where(i => i is Episode && i.ParentIndexNumber.HasValue && i.ParentIndexNumber.Value == 0)
.OrderBy(i =>
{
if (i.PremiereDate.HasValue)