AdminAPI: Fix grouped reports for closed/resolved reports

This commit is contained in:
Maxim Filippov 2019-11-25 01:39:35 +09:00
parent 937d6c6b32
commit a4b4f6b704
1 changed files with 2 additions and 1 deletions

View File

@ -839,7 +839,8 @@ defmodule Pleroma.Web.ActivityPub.Utils do
def get_reports_by_status_id(ap_id) do
from(a in Activity,
where: fragment("(?)->>'type' = 'Flag'", a.data),
where: fragment("(?)->'object' @> ?", a.data, ^[%{id: ap_id}])
where: fragment("(?)->'object' @> ?", a.data, ^[%{id: ap_id}]),
or_where: fragment("(?)->'object' @> ?", a.data, ^[ap_id])
)
|> Activity.with_preloaded_user_actor()
|> Repo.all()