summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-07-03 18:58:24 -0700
committerDessalines <tyhou13@gmx.com>2019-07-03 18:58:24 -0700
commit6280c99862bf3c25bfed10c8c974bfba95859556 (patch)
tree57f8bb28a2549940890bd7d2da490dc7fce5f281 /server
parent49b566716779d194d8e6d42e4005219c62a96d11 (diff)
Fixing trending
Diffstat (limited to 'server')
-rw-r--r--server/src/db/community_view.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/db/community_view.rs b/server/src/db/community_view.rs
index d0dca738..33bf76bb 100644
--- a/server/src/db/community_view.rs
+++ b/server/src/db/community_view.rs
@@ -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 => {