From b37052a4a6a31b1d9ee85a71e24ec33b95083ada Mon Sep 17 00:00:00 2001 From: Cody Robibero Date: Sat, 5 Mar 2022 15:27:15 -0700 Subject: [PATCH] Fix build --- Jellyfin.Api/Controllers/ImageController.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jellyfin.Api/Controllers/ImageController.cs b/Jellyfin.Api/Controllers/ImageController.cs index 5da1af42a..05d80ba35 100644 --- a/Jellyfin.Api/Controllers/ImageController.cs +++ b/Jellyfin.Api/Controllers/ImageController.cs @@ -1770,8 +1770,7 @@ namespace Jellyfin.Api.Controllers return await GetImageResult( options, cacheDuration, - ImmutableDictionary.Empty, - Request.Method.Equals(HttpMethods.Head, StringComparison.OrdinalIgnoreCase)) + ImmutableDictionary.Empty) .ConfigureAwait(false); }