trunk
nbsp 2025-01-07 02:20:30 +02:00
parent fe43c0c37f
commit 89525d4787
No known key found for this signature in database
GPG Key ID: 7184AC1C9835CE48
1 changed files with 2 additions and 2 deletions

View File

@ -112,11 +112,11 @@ func GetPostsForUser(user string) (posts []Post) {
} }
} }
posts = append(posts, Post{ posts = append([]Post{Post{
Author: user, Author: user,
Date: fileDate, Date: fileDate,
Words: count, Words: count,
}) }}, posts...)
} }
return return
} }