Fix HttpClient.SendAsync call for image proxy

This commit is contained in:
2026-02-03 18:59:58 -05:00
parent 1a1f9e136f
commit 9f8b3d65fb

View File

@@ -2383,7 +2383,7 @@ public class JellyfinController : ControllerBase
}
}
var response = await _proxyService.HttpClient.GetAsync(request);
var response = await _proxyService.HttpClient.SendAsync(request);
if (!response.IsSuccessStatusCode)
{