ensure only pickable frontends can be returned

This commit is contained in:
FloatingGhost 2023-04-14 17:42:40 +01:00 committed by Gitea
parent 0d418fc9ba
commit 88876ce85b

View file

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