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

remove_monads_for_lemmy_js_client^2
Dessalines 1 year ago committed by GitHub
parent e567151ec3
commit b7d5b37ac9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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

Loading…
Cancel
Save