diff options
| author | Bond-009 <bond.009@outlook.com> | 2020-09-11 09:10:16 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-09-11 09:10:16 +0000 |
| commit | 1d633aac0a9c9b28c216dafe5b0180922f190cc6 (patch) | |
| tree | e0af0ac17b9455f9a42a26f591e6911a6776ab19 /Jellyfin.Api/Controllers/ItemsController.cs | |
| parent | 50877761f646effbe505de74b317ba52af3e4424 (diff) | |
| parent | 63ebae2f9eb015b1b7a834417c2958c81e82bbf8 (diff) | |
Merge pull request #4093 from crobibero/bad-route
Fix api routes
Diffstat (limited to 'Jellyfin.Api/Controllers/ItemsController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/ItemsController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/ItemsController.cs b/Jellyfin.Api/Controllers/ItemsController.cs index 06ab176b2..652c4689d 100644 --- a/Jellyfin.Api/Controllers/ItemsController.cs +++ b/Jellyfin.Api/Controllers/ItemsController.cs @@ -145,7 +145,7 @@ namespace Jellyfin.Api.Controllers [HttpGet("Users/{uId}/Items", Name = "GetItems_2")] [ProducesResponseType(StatusCodes.Status200OK)] public ActionResult<QueryResult<BaseItemDto>> GetItems( - [FromRoute, Required] Guid? uId, + [FromRoute] Guid? uId, [FromQuery] Guid? userId, [FromQuery] string? maxOfficialRating, [FromQuery] bool? hasThemeSong, |
