|
|
@ -3,6 +3,7 @@ using System.ComponentModel;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.ComponentModel.DataAnnotations;
|
|
|
|
using System.Globalization;
|
|
|
|
using System.Globalization;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
using Jellyfin.Api.Helpers;
|
|
|
|
using MediaBrowser.Controller.Drawing;
|
|
|
|
using MediaBrowser.Controller.Drawing;
|
|
|
|
using MediaBrowser.Controller.Dto;
|
|
|
|
using MediaBrowser.Controller.Dto;
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
@ -105,9 +106,9 @@ namespace Jellyfin.Api.Controllers
|
|
|
|
IncludeStudios = includeStudios,
|
|
|
|
IncludeStudios = includeStudios,
|
|
|
|
StartIndex = startIndex,
|
|
|
|
StartIndex = startIndex,
|
|
|
|
UserId = userId,
|
|
|
|
UserId = userId,
|
|
|
|
IncludeItemTypes = Split(includeItemTypes, ',', true),
|
|
|
|
IncludeItemTypes = RequestHelpers.Split(includeItemTypes, ',', true),
|
|
|
|
ExcludeItemTypes = Split(excludeItemTypes, ',', true),
|
|
|
|
ExcludeItemTypes = RequestHelpers.Split(excludeItemTypes, ',', true),
|
|
|
|
MediaTypes = Split(mediaTypes, ',', true),
|
|
|
|
MediaTypes = RequestHelpers.Split(mediaTypes, ',', true),
|
|
|
|
ParentId = parentId,
|
|
|
|
ParentId = parentId,
|
|
|
|
|
|
|
|
|
|
|
|
IsKids = isKids,
|
|
|
|
IsKids = isKids,
|
|
|
|