diff --git a/src/devranta/api.py b/src/devranta/api.py index f3675f4..66eac6b 100644 --- a/src/devranta/api.py +++ b/src/devranta/api.py @@ -161,12 +161,11 @@ class Api: if not await self.ensure_login(): return None async with self as session: - response = await session.get( + response = await session.post( url=self.patch_url(f"comments/{comment_id}"), data=self.patch_auth({"comment": comment}), ) obj = await response.json() - print(obj) return obj.get("success", False) @property