aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Library/LibraryService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-21 03:54:53 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-11-21 03:54:53 -0500
commitf275d7f3d2f40f5e4cbe2f97df6dbd9be8ec37fe (patch)
tree44d15fc67ebe2b131e77531cd7e14c33bd695370 /MediaBrowser.Api/Library/LibraryService.cs
parent1dc080df8ba5b9af9245788634d56cb155afd2ba (diff)
reduce library queries
Diffstat (limited to 'MediaBrowser.Api/Library/LibraryService.cs')
-rw-r--r--MediaBrowser.Api/Library/LibraryService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Library/LibraryService.cs b/MediaBrowser.Api/Library/LibraryService.cs
index 36a58cc20..695718a25 100644
--- a/MediaBrowser.Api/Library/LibraryService.cs
+++ b/MediaBrowser.Api/Library/LibraryService.cs
@@ -369,7 +369,7 @@ namespace MediaBrowser.Api.Library
if (item is Movie || (program != null && program.IsMovie) || item is Trailer)
{
- return new MoviesService(_userManager, _userDataManager, _libraryManager, _itemRepo, _dtoService, _config, _authContext)
+ return new MoviesService(_userManager, _libraryManager, _dtoService, _config, _authContext)
{
Request = Request,