forked from AkkomaGang/akkoma
Fix formatting
This commit is contained in:
parent
92362e1e22
commit
409ff60bf8
2 changed files with 3 additions and 4 deletions
|
@ -3,10 +3,9 @@ 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}
|
||||
|
|
Loading…
Reference in a new issue