mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-19 04:51:27 +00:00
Merge pull request #4688 from pixelfed/staging
Update AdminReportController, add `profile_id` to group by. Fixes #4685
This commit is contained in:
commit
f38226c527
1 changed files with 1 additions and 1 deletions
|
@ -643,7 +643,7 @@ trait AdminReportController
|
||||||
$q->whereNull('admin_seen') :
|
$q->whereNull('admin_seen') :
|
||||||
$q->whereNotNull('admin_seen');
|
$q->whereNotNull('admin_seen');
|
||||||
})
|
})
|
||||||
->groupBy(['id', 'object_id', 'object_type'])
|
->groupBy(['id', 'object_id', 'object_type', 'profile_id'])
|
||||||
->cursorPaginate(6)
|
->cursorPaginate(6)
|
||||||
->withQueryString()
|
->withQueryString()
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue