forked from AkkomaGang/akkoma
Fix formatting
This commit is contained in:
parent
92362e1e22
commit
409ff60bf8
2 changed files with 3 additions and 4 deletions
|
@ -163,7 +163,7 @@
|
|||
allow_followersonly: false,
|
||||
allow_direct: false
|
||||
|
||||
config :pleroma, :mrf_hellthreadmitigation, threshold: 10
|
||||
config :pleroma, :mrf_hellthreadmitigation, threshold: 10
|
||||
|
||||
config :pleroma, :mrf_simple,
|
||||
media_removal: [],
|
||||
|
|
|
@ -3,13 +3,12 @@ defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicy do
|
|||
|
||||
@impl true
|
||||
def filter(object) do
|
||||
|
||||
policy = Pleroma.Config.get(:mrf_hellthreadmitigation)
|
||||
|
||||
if (length(object["to"]) + length(object["cc"])) > Keyword.get(policy, :threshold) do
|
||||
if length(object["to"]) + length(object["cc"]) > Keyword.get(policy, :threshold) do
|
||||
{:reject, nil}
|
||||
else
|
||||
{:ok, object}
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue