Fixing posts order.

This commit is contained in:
sergiotarxz 2022-11-10 23:49:13 +01:00
parent 61ad5c09b7
commit 19fcb1e75f
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ sub Retrieve {
}
$cached_posts_by_category = {};
$cached_posts_by_slug = {};
for my $post_file ( reverse $POSTS_DIR->children ) {
for my $post_file ( sort { $b cmp $a } $POSTS_DIR->children ) {
warn "Bad file $post_file, omiting...", next
if !-f $post_file || $post_file !~ /\.xml$/;
my $dom = Mojo::DOM->new( $post_file->slurp_utf8 );