aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/TrailersController.cs
diff options
context:
space:
mode:
authordkanada <dkanada@users.noreply.github.com>2020-10-11 18:31:38 +0900
committerGitHub <noreply@github.com>2020-10-11 18:31:38 +0900
commit6e585ccfb267c3f6ce7ac47f2564c011cd465b37 (patch)
tree10d102c811d24e331c84fb2f58e6194807bddd1c /Jellyfin.Api/Controllers/TrailersController.cs
parent1a27d010ec2c96731f73fa64a6a4fa1b9ae592fe (diff)
parent549f2284ad87e78bcf43cc9baec2ce7977769dc4 (diff)
Merge pull request #4303 from crobibero/query-filters
Convert filters string to enum.
Diffstat (limited to 'Jellyfin.Api/Controllers/TrailersController.cs')
-rw-r--r--Jellyfin.Api/Controllers/TrailersController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/TrailersController.cs b/Jellyfin.Api/Controllers/TrailersController.cs
index 5157b08ae..08d9f78fc 100644
--- a/Jellyfin.Api/Controllers/TrailersController.cs
+++ b/Jellyfin.Api/Controllers/TrailersController.cs
@@ -146,7 +146,7 @@ namespace Jellyfin.Api.Controllers
[FromQuery] string? parentId,
[FromQuery] string? fields,
[FromQuery] string? excludeItemTypes,
- [FromQuery] string? filters,
+ [FromQuery] ItemFilter[] filters,
[FromQuery] bool? isFavorite,
[FromQuery] string? mediaTypes,
[FromQuery] string? imageTypes,