diff --git a/ttbp/ttbp.go b/ttbp/ttbp.go index ec2a1ef..794a021 100644 --- a/ttbp/ttbp.go +++ b/ttbp/ttbp.go @@ -112,11 +112,11 @@ func GetPostsForUser(user string) (posts []Post) { } } - posts = append(posts, Post{ + posts = append([]Post{Post{ Author: user, Date: fileDate, Words: count, - }) + }}, posts...) } return }