formatting
This commit is contained in:
parent
c724d8df98
commit
561a21986d
|
@ -320,8 +320,7 @@
|
||||||
federated_timeline_removal: [],
|
federated_timeline_removal: [],
|
||||||
replace: []
|
replace: []
|
||||||
|
|
||||||
config :pleroma, :mrf_subchain,
|
config :pleroma, :mrf_subchain, match_actor: %{}
|
||||||
match_actor: %{}
|
|
||||||
|
|
||||||
config :pleroma, :rich_media, enabled: true
|
config :pleroma, :rich_media, enabled: true
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,11 @@ defp lookup_subchain(actor) do
|
||||||
@impl true
|
@impl true
|
||||||
def filter(%{"actor" => actor} = message) do
|
def filter(%{"actor" => actor} = message) do
|
||||||
with {:ok, match, subchain} <- lookup_subchain(actor) do
|
with {:ok, match, subchain} <- lookup_subchain(actor) do
|
||||||
Logger.debug("[SubchainPolicy] Matched #{actor} against #{inspect(match)} with subchain #{inspect(subchain)}")
|
Logger.debug(
|
||||||
|
"[SubchainPolicy] Matched #{actor} against #{inspect(match)} with subchain #{
|
||||||
|
inspect(subchain)
|
||||||
|
}"
|
||||||
|
)
|
||||||
|
|
||||||
subchain
|
subchain
|
||||||
|> MRF.filter(message)
|
|> MRF.filter(message)
|
||||||
|
|
Loading…
Reference in New Issue