Skip to content

Commit

Permalink
Merge pull request #40 from UlrikHD/main
Browse files Browse the repository at this point in the history
Bugfix: Adds a missing string conversion in get_replies()
  • Loading branch information
tjkessler authored Jul 20, 2024
2 parents 16633d1 + 7f24bef commit 554cd2f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions plemmy/lemmyhttp.py
Original file line number Diff line number Diff line change
Expand Up @@ -1062,6 +1062,7 @@ def get_replies(self, limit: int = None, page: int = None,
"""

form = create_form(locals())
form["unread_only"] = str(unread_only).lower()
return get_handler(self._session, f"{self._api_url}/user/replies",
None, params=form)

Expand Down

0 comments on commit 554cd2f

Please sign in to comment.