Update community_moderator_view.rs

This commit is contained in:
dullbananas 2024-06-21 06:47:39 -07:00 committed by GitHub
parent 84142f031c
commit 85cd62dde2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -89,8 +89,8 @@ impl CommunityModeratorView {
// https://stackoverflow.com/questions/24042359/how-to-join-only-one-row-in-joined-table-with-postgres
.distinct_on(community_moderator::community_id)
.order_by((
community_moderator::community_id,
community_moderator::published,
community_moderator::community_id,
community_moderator::published,
))
.load::<CommunityModeratorView>(conn)
.await