From d281ae178d4217ea6d0306a565a2a58a4a64d997 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Thu, 28 Mar 2024 07:30:45 +0200 Subject: [PATCH] New: Allow HEAD requests to ping endpoint (cherry picked from commit 7353fe479dbb8d0dab76993ebed92d48e1b05524) --- src/Lidarr.Http/Ping/PingController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Lidarr.Http/Ping/PingController.cs b/src/Lidarr.Http/Ping/PingController.cs index 7f4a23939..2f25d14e2 100644 --- a/src/Lidarr.Http/Ping/PingController.cs +++ b/src/Lidarr.Http/Ping/PingController.cs @@ -21,6 +21,7 @@ namespace Lidarr.Http.Ping [AllowAnonymous] [HttpGet("/ping")] + [HttpHead("/ping")] [Produces("application/json")] public ActionResult GetStatus() {