ActivityPub: When restricting to media posts, only show 'Creates'.

This commit is contained in:
lain 2020-06-16 13:08:27 +02:00
commit 1eb6cedaad
2 changed files with 11 additions and 2 deletions

View file

@ -833,7 +833,8 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
defp restrict_media(query, %{only_media: true}) do
from(
[_activity, object] in query,
[activity, object] in query,
where: fragment("(?)->>'type' = ?", activity.data, "Create"),
where: fragment("not (?)->'attachment' = (?)", object.data, ^[])
)
end