aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/TrickplayController.cs
diff options
context:
space:
mode:
authorNiels van Velzen <nielsvanvelzen@users.noreply.github.com>2024-09-22 18:25:43 +0200
committerGitHub <noreply@github.com>2024-09-22 10:25:43 -0600
commit4dcae54035dbdcb621793bf71b6161c934d97d59 (patch)
tree938665afbacabe15afee38bdb4c5a585e8c26f2c /Jellyfin.Api/Controllers/TrickplayController.cs
parent39747ee80b2f3f59274f54eeb60b56139936a942 (diff)
Fix GetTrickplayTileImage operation name (#12681)
Diffstat (limited to 'Jellyfin.Api/Controllers/TrickplayController.cs')
-rw-r--r--Jellyfin.Api/Controllers/TrickplayController.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/TrickplayController.cs b/Jellyfin.Api/Controllers/TrickplayController.cs
index c1ff0f340..2cf66144c 100644
--- a/Jellyfin.Api/Controllers/TrickplayController.cs
+++ b/Jellyfin.Api/Controllers/TrickplayController.cs
@@ -80,7 +80,7 @@ public class TrickplayController : BaseJellyfinApiController
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status404NotFound)]
[ProducesImageFile]
- public async Task<ActionResult> GetTrickplayTileImageAsync(
+ public async Task<ActionResult> GetTrickplayTileImage(
[FromRoute, Required] Guid itemId,
[FromRoute, Required] int width,
[FromRoute, Required] int index,