ensure only pickable frontends can be returned

This commit is contained in:
FloatingGhost 2023-04-14 17:42:40 +01:00
parent ba59fdcd54
commit f12d3cce39
1 changed files with 5 additions and 1 deletions

View File

@ -78,7 +78,11 @@ defmodule Pleroma.Web.Plugs.FrontendStatic do
:primary
frontend ->
frontend
if Enum.member?(Pleroma.Config.get([:frontends, :pickable], []), frontend) do
frontend
else
:primary
end
end
end