aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Api/Controllers/TrailersController.cs
diff options
context:
space:
mode:
authorcvium <clausvium@gmail.com>2022-10-06 14:15:40 +0200
committercvium <clausvium@gmail.com>2022-10-06 14:15:40 +0200
commit6afc9110439c3c5345beb9a6bac1968ee4dedce8 (patch)
treedd72f47907390a7a88373d4cc7510d602ed2d556 /Jellyfin.Api/Controllers/TrailersController.cs
parent5dc30c6a6d8af9a758fd730c9da69c13847c21c3 (diff)
fix Release build
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 cf812fa23..b296d1c96 100644
--- a/Jellyfin.Api/Controllers/TrailersController.cs
+++ b/Jellyfin.Api/Controllers/TrailersController.cs
@@ -119,7 +119,7 @@ namespace Jellyfin.Api.Controllers
/// <returns>A <see cref="QueryResult{BaseItemDto}"/> with the trailers.</returns>
[HttpGet]
[ProducesResponseType(StatusCodes.Status200OK)]
- public Task<ActionResult<QueryResult<BaseItemDto>>> GetTrailers(
+ public ActionResult<QueryResult<BaseItemDto>> GetTrailers(
[FromQuery] Guid? userId,
[FromQuery] string? maxOfficialRating,
[FromQuery] bool? hasThemeSong,