forked from mirrors/akkoma
Fix formatting
This commit is contained in:
parent
92362e1e22
commit
409ff60bf8
|
@ -3,10 +3,9 @@ defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicy do
|
||||||
|
|
||||||
@impl true
|
@impl true
|
||||||
def filter(object) do
|
def filter(object) do
|
||||||
|
|
||||||
policy = Pleroma.Config.get(:mrf_hellthreadmitigation)
|
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}
|
{:reject, nil}
|
||||||
else
|
else
|
||||||
{:ok, object}
|
{:ok, object}
|
||||||
|
|
Loading…
Reference in a new issue