mirror of https://github.com/LemmyNet/lemmy.git
Update community_moderator_view.rs
parent
37fcfc6138
commit
84142f031c
|
@ -88,7 +88,10 @@ impl CommunityModeratorView {
|
|||
// A hacky workaround instead of group_bys
|
||||
// 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::published)
|
||||
.order_by((
|
||||
community_moderator::community_id,
|
||||
community_moderator::published,
|
||||
))
|
||||
.load::<CommunityModeratorView>(conn)
|
||||
.await
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue