Skip to content

Commit

Permalink
fix #325
Browse files Browse the repository at this point in the history
  • Loading branch information
ety001 committed Dec 4, 2023
1 parent 7785763 commit a9669b7
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 a9669b7

Please sign in to comment.