mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
[Bugfix] Fix for #4518: SQL query that generates the report list in the admin view needs to include the 'id' field
This commit is contained in:
parent
83900a3b00
commit
480394f3d8
1 changed files with 1 additions and 1 deletions
|
@ -643,7 +643,7 @@ trait AdminReportController
|
|||
$q->whereNull('admin_seen') :
|
||||
$q->whereNotNull('admin_seen');
|
||||
})
|
||||
->groupBy(['object_id', 'object_type'])
|
||||
->groupBy(['id', 'object_id', 'object_type'])
|
||||
->cursorPaginate(6)
|
||||
->withQueryString()
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue