diff --git a/packages/blog/comments.go b/packages/blog/comments.go index 95c8f37..5ce629b 100644 --- a/packages/blog/comments.go +++ b/packages/blog/comments.go @@ -108,7 +108,7 @@ func getCommentsByParentId(w http.ResponseWriter, r *http.Request) { SELECT id, author, content, time_published, modified, last_modified FROM comments WHERE parent = $1 - ORDER BY id DESC + ORDER BY id ASC ` rows, err := DB.Query(search, post_id) if err != nil {