mastodon api: fix exclude_replies (closes #1287)

This commit is contained in:
Ariadne Conill 2019-10-07 12:29:33 +00:00
commit 9a2f71f4d5
2 changed files with 3 additions and 2 deletions

View file

@ -780,8 +780,8 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
defp restrict_replies(query, %{"exclude_replies" => val}) when val == "true" or val == "1" do
from(
activity in query,
where: fragment("?->'object'->>'inReplyTo' is null", activity.data)
[_activity, object] in query,
where: fragment("?->>'inReplyTo' is null", object.data)
)
end