diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-12-15 08:28:44 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-12-15 08:28:44 +0100 |
| commit | 4c9bd905c6ecbcf77ab644d3d936d17b1bb8e967 (patch) | |
| tree | a2a2d1e7a6c591eee190342a172a8b9d7d51a802 /Jellyfin.Api/Controllers/StudiosController.cs | |
| parent | ec9cff29dfa0c0b08f4181b753eadab34cb05e3c (diff) | |
| parent | 87439665d782a7a0f24d4015d53d584e66e40c2f (diff) | |
Merge pull request #6979 from crobibero/baseitemkind
Use BaseItemKind where possible
Diffstat (limited to 'Jellyfin.Api/Controllers/StudiosController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/StudiosController.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Api/Controllers/StudiosController.cs b/Jellyfin.Api/Controllers/StudiosController.cs index da8f8b199..4422ef32c 100644 --- a/Jellyfin.Api/Controllers/StudiosController.cs +++ b/Jellyfin.Api/Controllers/StudiosController.cs @@ -97,8 +97,8 @@ namespace Jellyfin.Api.Controllers var query = new InternalItemsQuery(user) { - ExcludeItemTypes = RequestHelpers.GetItemTypeStrings(excludeItemTypes), - IncludeItemTypes = RequestHelpers.GetItemTypeStrings(includeItemTypes), + ExcludeItemTypes = excludeItemTypes, + IncludeItemTypes = includeItemTypes, StartIndex = startIndex, Limit = limit, IsFavorite = isFavorite, |
