aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/TrailersController.cs
diff options
context:
space:
mode:
authorNiels van Velzen <git@ndat.nl>2022-08-14 12:47:25 +0200
committerNiels van Velzen <git@ndat.nl>2022-08-14 12:47:25 +0200
commit0f9124423941f7d2e00333942d3766c4cb8bac92 (patch)
treebeb3621cb6d3165585e27a747c4ab3f594dc8732 /Jellyfin.Api/Controllers/TrailersController.cs
parentc7edf8b565e7d52400cf65e747a8e800ecd3a036 (diff)
Use Guid for adjacentTo API parameter
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 790d6e64d..1c5aa9b8e 100644
--- a/Jellyfin.Api/Controllers/TrailersController.cs
+++ b/Jellyfin.Api/Controllers/TrailersController.cs
@@ -126,7 +126,7 @@ namespace Jellyfin.Api.Controllers
[FromQuery] bool? hasSubtitles,
[FromQuery] bool? hasSpecialFeature,
[FromQuery] bool? hasTrailer,
- [FromQuery] string? adjacentTo,
+ [FromQuery] Guid? adjacentTo,
[FromQuery] int? parentIndexNumber,
[FromQuery] bool? hasParentalRating,
[FromQuery] bool? isHd,