Skip to content

Commit

Permalink
fix comment sort order bug introduced in #190
Browse files Browse the repository at this point in the history
  • Loading branch information
roadscape committed Feb 5, 2019
1 parent 300d538 commit 5ba3570
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 5ba3570

Please sign in to comment.