Merge branch 'user-query/filter-out-internal' into 'develop'
[akkoma] / lib / pleroma / plugs / static_fe_plug.ex
index 10843b4c8d23ead3cc5b43dad58546be1575c401..143665c71b0756c2913d578fdaea3751bdbb49c9 100644 (file)
@@ -9,7 +9,7 @@ defmodule Pleroma.Plugs.StaticFEPlug do
   def init(options), do: options
 
   def call(conn, _) do
-    if enabled?() and accepts_html?(conn) do
+    if enabled?() and requires_html?(conn) do
       conn
       |> StaticFEController.call(:show)
       |> halt()
@@ -20,10 +20,7 @@ defmodule Pleroma.Plugs.StaticFEPlug 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")
+  defp requires_html?(conn) do
+    Phoenix.Controller.get_format(conn) == "html"
   end
 end