fix: correct vote string from empty to "-1" in voting component

This commit is contained in:
retoor 2024-11-27 19:32:36 +00:00
parent cc84764045
commit b113a81a04

View File

@ -60,15 +60,15 @@ class Api:
obj = json.loads(response.text)
return obj
def post_rant_vote(self, id, vote):
def post_rant_vote(self, id_, vote):
response = requests.post(
self.base_url + "devrant/rants/" + str(id) + "/vote",
self.base_url + "devrant/rants/" + str(id_) + "/vote",
data={
"app": 3,
"user_id": self.auth["user_id"],
"token_id": self.auth["token_id"],
"token_key": self.auth["token_key"],
"vote": vote,
"vote": str(vote),
# "plat": 3,
},
)