mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-01 01:36:12 -04:00
Remove pointless community follower sort. (#1939)
This commit is contained in:
parent
3e062a9959
commit
88c7b95d03
@ -28,7 +28,6 @@ impl CommunityFollowerView {
|
||||
Person::safe_columns_tuple(),
|
||||
))
|
||||
.filter(community_follower::community_id.eq(community_id))
|
||||
.order_by(community_follower::published)
|
||||
.load::<CommunityFollowerViewTuple>(conn)?;
|
||||
|
||||
Ok(Self::from_tuple_to_vec(res))
|
||||
@ -43,7 +42,6 @@ impl CommunityFollowerView {
|
||||
Person::safe_columns_tuple(),
|
||||
))
|
||||
.filter(community_follower::person_id.eq(person_id))
|
||||
.order_by(community_follower::published)
|
||||
.load::<CommunityFollowerViewTuple>(conn)?;
|
||||
|
||||
Ok(Self::from_tuple_to_vec(res))
|
||||
|
Loading…
Reference in New Issue
Block a user