diff options
| author | David <daullmer@gmail.com> | 2020-06-26 13:43:31 +0200 |
|---|---|---|
| committer | David <daullmer@gmail.com> | 2020-06-26 13:43:31 +0200 |
| commit | fb9654e783a153871d484fcdb65cac905a1729b2 (patch) | |
| tree | 236702aeb717f5849872f5a6b5d3c260cd6a559b | |
| parent | 778634b41b7337ab676bf2331939ea11106af20e (diff) | |
Correct Library routing
| -rw-r--r-- | Jellyfin.Api/Controllers/LibraryController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/LibraryController.cs b/Jellyfin.Api/Controllers/LibraryController.cs index 640308d4a..f525076fb 100644 --- a/Jellyfin.Api/Controllers/LibraryController.cs +++ b/Jellyfin.Api/Controllers/LibraryController.cs @@ -281,7 +281,7 @@ namespace Jellyfin.Api.Controllers /// <response code="200">Theme songs and videos returned.</response> /// <response code="404">Item not found.</response> /// <returns>The item theme videos.</returns> - [HttpGet("ThemeMedia")] + [HttpGet("/Items/{itemId}/ThemeMedia")] [ProducesResponseType(StatusCodes.Status200OK)] public ActionResult<AllThemeMediaResult> GetThemeMedia( [FromRoute] Guid itemId, |
