From b6b915edb92529a0d77a1137478d7bb1f53fbff3 Mon Sep 17 00:00:00 2001 From: gsd Date: Tue, 26 May 2026 17:38:15 +0300 Subject: [PATCH] fff --- bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bot.py b/bot.py index a8c4de9..2244215 100644 --- a/bot.py +++ b/bot.py @@ -133,7 +133,7 @@ class DiscordClient(commands.Bot): async def ValidateUuidOnRegister(self, uuid): async with aiohttp.ClientSession(cookies={"secretkey":self.secret_key}) as session: - async with session.get(f"{self.backend_url}/api/discord/validate?uuid={uuid}", ssl=False) as response: + async with session.post(f"{self.backend_url}/api/discord/validate?uuid={uuid}", ssl=False) as response: steamIdContainer = await response.json() if steamIdContainer is None: return None