diff options
author | Karen Konou <konoukaren@gmail.com> | 2018-12-22 23:32:38 +0100 |
---|---|---|
committer | Karen Konou <konoukaren@gmail.com> | 2018-12-22 23:32:38 +0100 |
commit | 409ff60bf87d40919ec8cfcbe054cb66b87ca972 (patch) | |
tree | 186b083399845ab078f2b3eee9f4af7276bf88a2 | |
parent | 92362e1e22a3debfaf3275822519417ee8755a7a (diff) | |
download | pleroma-409ff60bf87d40919ec8cfcbe054cb66b87ca972.tar.gz |
Fix formatting
-rw-r--r-- | config/config.exs | 2 | ||||
-rw-r--r-- | lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/config/config.exs b/config/config.exs index de834e03a..5e1006f50 100644 --- a/config/config.exs +++ b/config/config.exs @@ -163,7 +163,7 @@ config :pleroma, :mrf_rejectnonpublic, allow_followersonly: false, allow_direct: false -config :pleroma, :mrf_hellthreadmitigation, threshold: 10 +config :pleroma, :mrf_hellthreadmitigation, threshold: 10 config :pleroma, :mrf_simple, media_removal: [], diff --git a/lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex b/lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex index 0e0918126..edcbc5219 100644 --- a/lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex +++ b/lib/pleroma/web/activity_pub/mrf/hellthread_policy.ex @@ -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
\ No newline at end of file +end |