fix: correct off-by-one error in pagination offset calculation for user list endpoint

This commit is contained in:
retoor 2024-12-17 12:45:41 +00:00
parent c854ba2cf1
commit 76a47102e7

View File

@ -170,4 +170,4 @@ class Bot:
def down_vote_rant(self, rant):
log.warning("Downvoting rant by {}.".format(rant["user_username"]))
log.debug(json.loads(self.api.post_rant_vote(rant["id"], -1)))
log.debug("Vote result: ".format(self.api.post_rant_vote(rant["id"], -1)))