projects
/
akkoma
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ed4f9f6
)
StaticFE Plug: Use phoenix helper to get the requested format.
author
lain
<lain@soykaf.club>
Mon, 6 Jul 2020 10:11:10 +0000
(12:11 +0200)
committer
lain
<lain@soykaf.club>
Mon, 6 Jul 2020 10:11:10 +0000
(12:11 +0200)
lib/pleroma/plugs/static_fe_plug.ex
patch
|
blob
|
history
diff --git
a/lib/pleroma/plugs/static_fe_plug.ex
b/lib/pleroma/plugs/static_fe_plug.ex
index 7c69b2dac87e7b647a2e562ed9b6854022563854..143665c71b0756c2913d578fdaea3751bdbb49c9 100644
(file)
--- a/
lib/pleroma/plugs/static_fe_plug.ex
+++ b/
lib/pleroma/plugs/static_fe_plug.ex
@@
-21,12
+21,6
@@
defmodule Pleroma.Plugs.StaticFEPlug do
defp enabled?, do: Pleroma.Config.get([:static_fe, :enabled], false)
defp requires_html?(conn) do
- case get_req_header(conn, "accept") do
- [accept | _] ->
- !String.contains?(accept, "json") && String.contains?(accept, "text/html")
-
- _ ->
- false
- end
+ Phoenix.Controller.get_format(conn) == "html"
end
end