From 711f7f20a1689ad70226222065e5f7fe6177a92a Mon Sep 17 00:00:00 2001 From: Eduard Urbach Date: Thu, 22 Jun 2017 17:42:17 +0200 Subject: [PATCH] Fixed order of posts --- pages/profile/posts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/profile/posts.go b/pages/profile/posts.go index ce54991c..df2e71d9 100644 --- a/pages/profile/posts.go +++ b/pages/profile/posts.go @@ -20,7 +20,7 @@ func GetPostsByUser(ctx *aero.Context) string { } posts := user.Posts() - arn.SortPostsLatestLast(posts) + arn.SortPostsLatestFirst(posts) var postables []arn.Postable