diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-07-22 01:44:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-07-22 01:44:45 -0400 |
| commit | 6fc279cd199a1e3da4ba1c0518859946acc16fd8 (patch) | |
| tree | c3d7a8d0196b100eb2b87047d8fb789b32d016ff /MediaBrowser.Api/UserLibrary/ItemsService.cs | |
| parent | 150ffb85d6ffdafac3645f71350c5412da37dd36 (diff) | |
| parent | 820c1ba79ae62fac985f6c774fa439d362858bd5 (diff) | |
Merge pull request #1963 from MediaBrowser/dev
display more from artist on album page
Diffstat (limited to 'MediaBrowser.Api/UserLibrary/ItemsService.cs')
| -rw-r--r-- | MediaBrowser.Api/UserLibrary/ItemsService.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/MediaBrowser.Api/UserLibrary/ItemsService.cs b/MediaBrowser.Api/UserLibrary/ItemsService.cs index 57acb07ac..74b33fbb7 100644 --- a/MediaBrowser.Api/UserLibrary/ItemsService.cs +++ b/MediaBrowser.Api/UserLibrary/ItemsService.cs @@ -263,7 +263,8 @@ namespace MediaBrowser.Api.UserLibrary ParentIndexNumber = request.ParentIndexNumber, AiredDuringSeason = request.AiredDuringSeason, AlbumArtistStartsWithOrGreater = request.AlbumArtistStartsWithOrGreater, - EnableTotalRecordCount = request.EnableTotalRecordCount + EnableTotalRecordCount = request.EnableTotalRecordCount, + ExcludeItemIds = request.GetExcludeItemIds() }; if (!string.IsNullOrWhiteSpace(request.Ids)) |
