mirror of https://github.com/LemmyNet/lemmy.git
parent
dd0418af18
commit
7f97279c48
|
@ -232,12 +232,6 @@ impl<'a> CommunityQueryBuilder<'a> {
|
||||||
|
|
||||||
// The view lets you pass a null user_id, if you're not logged in
|
// The view lets you pass a null user_id, if you're not logged in
|
||||||
match self.sort {
|
match self.sort {
|
||||||
SortType::Hot => {
|
|
||||||
query = query
|
|
||||||
.order_by(hot_rank.desc())
|
|
||||||
.then_order_by(number_of_subscribers.desc())
|
|
||||||
.filter(user_id.is_null())
|
|
||||||
}
|
|
||||||
SortType::New => query = query.order_by(published.desc()).filter(user_id.is_null()),
|
SortType::New => query = query.order_by(published.desc()).filter(user_id.is_null()),
|
||||||
SortType::TopAll => match self.from_user_id {
|
SortType::TopAll => match self.from_user_id {
|
||||||
Some(from_user_id) => {
|
Some(from_user_id) => {
|
||||||
|
@ -251,7 +245,12 @@ impl<'a> CommunityQueryBuilder<'a> {
|
||||||
.filter(user_id.is_null())
|
.filter(user_id.is_null())
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
_ => (),
|
SortType::Hot | _ => {
|
||||||
|
query = query
|
||||||
|
.order_by(hot_rank.desc())
|
||||||
|
.then_order_by(number_of_subscribers.desc())
|
||||||
|
.filter(user_id.is_null())
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
if !self.show_nsfw {
|
if !self.show_nsfw {
|
||||||
|
|
Loading…
Reference in New Issue