diff options
| author | Luke <luke.pulverenti@gmail.com> | 2016-06-25 02:52:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-06-25 02:52:44 -0400 |
| commit | 65c99a16de12df8bf14a980c13b5c044cbb653ad (patch) | |
| tree | 27d759d9af9cfa3a2b8bbd8252499cf433a31f92 /MediaBrowser.Api/UserLibrary/ItemsService.cs | |
| parent | 2242a4f7b17b7650a832f285a4c88a69cfdc2f81 (diff) | |
| parent | cf0d9883c6eec06fa8d065e585081716520e56e4 (diff) | |
Merge pull request #1879 from MediaBrowser/dev
Dev
Diffstat (limited to 'MediaBrowser.Api/UserLibrary/ItemsService.cs')
| -rw-r--r-- | MediaBrowser.Api/UserLibrary/ItemsService.cs | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/MediaBrowser.Api/UserLibrary/ItemsService.cs b/MediaBrowser.Api/UserLibrary/ItemsService.cs index a7fc646a9..7dd5920b7 100644 --- a/MediaBrowser.Api/UserLibrary/ItemsService.cs +++ b/MediaBrowser.Api/UserLibrary/ItemsService.cs @@ -48,11 +48,9 @@ namespace MediaBrowser.Api.UserLibrary /// </summary> /// <param name="userManager">The user manager.</param> /// <param name="libraryManager">The library manager.</param> - /// <param name="userDataRepository">The user data repository.</param> /// <param name="localization">The localization.</param> /// <param name="dtoService">The dto service.</param> - /// <param name="collectionManager">The collection manager.</param> - public ItemsService(IUserManager userManager, ILibraryManager libraryManager, IUserDataManager userDataRepository, ILocalizationManager localization, IDtoService dtoService, ICollectionManager collectionManager) + public ItemsService(IUserManager userManager, ILibraryManager libraryManager, ILocalizationManager localization, IDtoService dtoService) { _userManager = userManager; _libraryManager = libraryManager; @@ -302,7 +300,7 @@ namespace MediaBrowser.Api.UserLibrary { query.LocationTypes = request.LocationTypes.Split(',').Select(d => (LocationType)Enum.Parse(typeof(LocationType), d, true)).ToArray(); } - + // Min official rating if (!string.IsNullOrWhiteSpace(request.MinOfficialRating)) { |
