Fix Varnish 7 support by ensuring Media Preview Proxy fetches headers with a capitalized HEAD verb

This commit is contained in:
Mark Felder 2022-08-10 17:09:58 -04:00
parent b2ba307f4d
commit cbdc13b767
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ defmodule Pleroma.Web.MediaProxy.MediaProxyController do
media_proxy_url = MediaProxy.url(url)
with {:ok, %{status: status} = head_response} when status in 200..299 <-
Pleroma.HTTP.request("head", media_proxy_url, [], [], pool: :media) do
Pleroma.HTTP.request("HEAD", media_proxy_url, [], [], pool: :media) do
content_type = Tesla.get_header(head_response, "content-type")
content_length = Tesla.get_header(head_response, "content-length")
content_length = content_length && String.to_integer(content_length)