aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/UserLibrary/UserLibraryService.cs
diff options
context:
space:
mode:
authorMark Monteiro <marknr.monteiro@protonmail.com>2020-03-28 13:40:56 +0100
committerMark Monteiro <marknr.monteiro@protonmail.com>2020-03-28 13:40:56 +0100
commit5fcbedc194a7a8a7a8026a69b44f8192120d14e1 (patch)
tree5e054f3b0bd2650d479debfebb0b7687c223acac /MediaBrowser.Api/UserLibrary/UserLibraryService.cs
parentbd4269cb5914bd9e90aaa508fa63f4d7e47e7397 (diff)
Display extras with an unknown type
Diffstat (limited to 'MediaBrowser.Api/UserLibrary/UserLibraryService.cs')
-rw-r--r--MediaBrowser.Api/UserLibrary/UserLibraryService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/UserLibrary/UserLibraryService.cs b/MediaBrowser.Api/UserLibrary/UserLibraryService.cs
index 2ec08f578..a55b0253a 100644
--- a/MediaBrowser.Api/UserLibrary/UserLibraryService.cs
+++ b/MediaBrowser.Api/UserLibrary/UserLibraryService.cs
@@ -380,7 +380,7 @@ namespace MediaBrowser.Api.UserLibrary
var dtoOptions = GetDtoOptions(_authContext, request);
- var dtosExtras = item.GetExtras(new[] { ExtraType.Trailer })
+ var dtosExtras = item.GetExtras(new[] { ExtraType.Trailer }, false)
.Select(i => _dtoService.GetBaseItemDto(i, dtoOptions, user, item))
.ToArray();