diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-07-01 17:13:32 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-07-01 17:13:32 -0400 |
| commit | 3bef6ead9cec4c33d43b6348ae4fc33c9b70316a (patch) | |
| tree | 1c794728ddb74d046793dbde7fc590d6feee37f1 /MediaBrowser.Api/UserLibrary/UserLibraryService.cs | |
| parent | 970504abdf237a2c404024c6978d5353ea915d03 (diff) | |
#514 - Support HLS seeking
Diffstat (limited to 'MediaBrowser.Api/UserLibrary/UserLibraryService.cs')
| -rw-r--r-- | MediaBrowser.Api/UserLibrary/UserLibraryService.cs | 3 |
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) |
