Fix historical post fetching. Fixes #2640 (#2643)

This commit is contained in:
Dessalines 2023-01-04 09:58:11 -05:00 committed by GitHub
parent e567151ec3
commit b7d5b37ac9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -82,8 +82,8 @@ impl Post {
.filter(community_id.eq(the_community_id))
.filter(deleted.eq(false))
.filter(removed.eq(false))
.then_order_by(published.desc())
.then_order_by(featured_community.desc())
.then_order_by(published.desc())
.limit(FETCH_LIMIT_MAX)
.load::<Self>(conn)
.await