Skip to content

Commit

Permalink
Merge pull request #193 from steemit/fix-comments-sort
Browse files Browse the repository at this point in the history
fix comment sort order bug
  • Loading branch information
roadscape committed Feb 5, 2019
2 parents 300d538 + 5ba3570 commit 60dc61e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hive/server/condenser_api/cursor.py
Expand Up @@ -309,7 +309,7 @@ async def pids_by_account_comments(db, account: str, start_permlink: str = '', l
WHERE author = :account %s
AND depth > 0
AND is_deleted = '0'
ORDER BY id, depth DESC
ORDER BY id DESC, depth
LIMIT :limit
""" % seek

Expand Down

0 comments on commit 60dc61e

Please sign in to comment.