ensure only pickable frontends can be returned

This commit is contained in:
FloatingGhost 2023-04-14 17:42:40 +01:00 committed by nicole mikołajczyk
commit 1fd94ed001

View file

@ -76,7 +76,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