diff options
Diffstat (limited to 'src/main.rs')
-rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 8e31fee..ebc480e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -180,7 +180,7 @@ async fn get_poem(Path(poem): Path<String>, locale: Locale) -> Result<templates: #[handler] async fn get_poetry(locale: Locale) -> Result<templates::Poetry> { let mut poems = Poem::get_articles().await?; - poems.sort_by_key(|poem| poem.created_at); + poems.sort_by_key(|poem| poem.published_at); poems.reverse(); Ok(templates::Poetry { title: locale.text("title-poetry").unwrap(), |