forked from AkkomaGang/akkoma
Merge branch 'static-accept-missing' into 'develop'
Fix static FE plug to handle missing Accept header. See merge request pleroma/pleroma!2260
This commit is contained in:
commit
658f30c0b3
1 changed files with 4 additions and 1 deletions
|
@ -21,6 +21,9 @@ def call(conn, _) do
|
|||
defp enabled?, do: Pleroma.Config.get([:static_fe, :enabled], false)
|
||||
|
||||
defp accepts_html?(conn) do
|
||||
conn |> get_req_header("accept") |> List.first() |> String.contains?("text/html")
|
||||
case get_req_header(conn, "accept") do
|
||||
[accept | _] -> String.contains?(accept, "text/html")
|
||||
_ -> false
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue