diff options
author | rinpatch <rinpatch@sdf.org> | 2019-02-08 13:16:50 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2019-02-08 13:16:50 +0300 |
commit | f88dec8b33f96de64c3a9ee212ea265a87608b3b (patch) | |
tree | 48598a685a59606b9e5785211b567e0a6feb4930 | |
parent | 6c21f5aa167c0ad37a18f3164c9ec53fbad492c2 (diff) | |
download | pleroma-f88dec8b33f96de64c3a9ee212ea265a87608b3b.tar.gz |
What idiot did that? (me)
-rw-r--r-- | lib/pleroma/web/activity_pub/mrf/keyword_policy.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/activity_pub/mrf/keyword_policy.ex b/lib/pleroma/web/activity_pub/mrf/keyword_policy.ex index 073b86372..8f49d8bfb 100644 --- a/lib/pleroma/web/activity_pub/mrf/keyword_policy.ex +++ b/lib/pleroma/web/activity_pub/mrf/keyword_policy.ex @@ -28,7 +28,7 @@ defmodule Pleroma.Web.ActivityPub.MRF.KeywordPolicy do string_matches?(content, pattern) end) do to = List.delete(to, "https://www.w3.org/ns/activitystreams#Public") - cc = ["https://www.w3.org/ns/activitystreams#Public" | [message["cc"] || []]] + cc = ["https://www.w3.org/ns/activitystreams#Public" | message["cc"] || []] message = message |