diff --git a/src/ragnar/api.py b/src/ragnar/api.py index e235c21..c08a65c 100644 --- a/src/ragnar/api.py +++ b/src/ragnar/api.py @@ -69,10 +69,9 @@ class Api: "token_id": self.auth["token_id"], "token_key": self.auth["token_key"], "vote": str(vote), - # "plat": 3, }, ) - return response.json() + return json.loads(response.text) def get_rant(self, rant_id): url = self.base_url + "devrant/rants/" + str(rant_id)