diff options
| author | Cody Robibero <cody@robibe.ro> | 2022-08-14 09:48:48 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-14 09:48:48 -0700 |
| commit | 12794d184aca2cf81eee8842d5adb8581e498faf (patch) | |
| tree | c1cea90de2442fa8c88e92827f1101ca79188a67 /Jellyfin.Api/Controllers/ItemsController.cs | |
| parent | 3c53b47dc55b790d8f529787279cb1412502fd17 (diff) | |
| parent | 61afd029dfbc3e3d7d14a980ce1682cfc8a04b94 (diff) | |
Merge pull request #8261 from nielsvanvelzen/adjacentTo-guid
Diffstat (limited to 'Jellyfin.Api/Controllers/ItemsController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/ItemsController.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Jellyfin.Api/Controllers/ItemsController.cs b/Jellyfin.Api/Controllers/ItemsController.cs index 58caae9f8..1d207d9ad 100644 --- a/Jellyfin.Api/Controllers/ItemsController.cs +++ b/Jellyfin.Api/Controllers/ItemsController.cs @@ -159,7 +159,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, @@ -614,7 +614,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, |
