forked from AkkomaGang/akkoma
AdminAPI: Fix grouped reports for closed/resolved reports
This commit is contained in:
parent
40059c9b1e
commit
1364d303f8
1 changed files with 2 additions and 1 deletions
|
@ -852,7 +852,8 @@ defp get_status_data(activity) 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()
|
||||
|
|
Loading…
Reference in a new issue