This commit is contained in:
lain 2018-05-13 10:56:44 +02:00
parent 76722ea9c8
commit 29376fcc13
1 changed files with 6 additions and 1 deletions

View File

@ -325,7 +325,12 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
defp restrict_unlisted(query) do
from(
activity in query,
where: fragment("not (?->'cc' \\?| ?)", activity.data, ^["https://www.w3.org/ns/activitystreams#Public"])
where:
fragment(
"not (?->'cc' \\?| ?)",
activity.data,
^["https://www.w3.org/ns/activitystreams#Public"]
)
)
end