Skip to content

Commit

Permalink
Merge pull request #326 from steemit/fix_key_err
Browse files Browse the repository at this point in the history
fix #325 reply page cannot open.
  • Loading branch information
yuekun0707 committed Dec 5, 2023
2 parents 7785763 + a9669b7 commit 31e3cee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hive/server/bridge_api/cursor.py
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ async def pids_by_replies(db, start_author: str, start_permlink: str = '',
return None
tmp_ids = []
for el in id_res:
tmp_ids.append(str(el[0]))
tmp_ids.append(str(el['id']))
ids = ",".join(tmp_ids)

sql = """
Expand Down

0 comments on commit 31e3cee

Please sign in to comment.