Fixing trending

This commit is contained in:
Dessalines 2019-07-03 18:58:24 -07:00
parent 49b5667167
commit 6280c99862

View file

@ -126,7 +126,7 @@ impl CommunityView {
// The view lets you pass a null user_id, if you're not logged in
match sort {
SortType::Hot => query = query.order_by(hot_rank.desc())
.then_order_by(published.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::TopAll => {