fix ordering of previous titles list

This commit is contained in:
2026-07-31 22:14:22 +02:00
parent 4256aaad1d
commit ec0840bf53
+1 -1
View File
@@ -251,7 +251,7 @@ impl DisbahnClient {
let previous_posts = post_versions::dsl::post_versions
.filter(post_versions::dsl::announcement_id.eq(item.guid))
.order_by(post_versions::publish_date.desc())
.order_by(post_versions::publish_date)
.load::<PostVersion>(self.database.conn())
.with_context(|| "Error loading previous posts from database")?;