Fedihosting-Foundation / plemmy

A Python package for accessing the LemmyHttp API
Apache License 2.0
45 stars 15 forks source link

Bugfix: Adds a missing string conversion in get_replies() #40

Closed UlrikHD closed 4 weeks ago

UlrikHD commented 1 month ago

get_replies() are missing the conversion of _unreadonly from bool to string, causing there to be a mismatch between the param type hint and what are valid input ("true"/"false"). Inputting a bool for _unreadonly without this fix will return an error from the web request.