diff options
author | Karen Konou <konoukaren@gmail.com> | 2018-12-23 11:14:29 +0100 |
---|---|---|
committer | Karen Konou <konoukaren@gmail.com> | 2018-12-23 11:14:29 +0100 |
commit | c76179419d5d4bb2423496856ad931974b56d6d5 (patch) | |
tree | 1fd4514ea983537aad4f23f101f5f8ba8bf12643 /lib | |
parent | c92f91ffebd848b7b9840b238d72455db285d564 (diff) | |
download | pleroma-c76179419d5d4bb2423496856ad931974b56d6d5.tar.gz |
Renamed the things
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex b/lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex index edcbc5219..d5aa2b988 100644 --- a/lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex +++ b/lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex @@ -3,7 +3,7 @@ defmodule Pleroma.Web.ActivityPub.MRF.HellthreadPolicy do @impl true def filter(object) do - policy = Pleroma.Config.get(:mrf_hellthreadmitigation) + policy = Pleroma.Config.get(:mrf_hellthread) if length(object["to"]) + length(object["cc"]) > Keyword.get(policy, :threshold) do {:reject, nil} |