Browse Source

fix666

master
gsd 2 years ago
parent
commit
8c04dfaf89
  1. 2
      backend_integration.py

2
backend_integration.py

@ -37,7 +37,7 @@ class BackendClient:
async def vip(self, steamid, amount: int, extra: str):
async with aiohttp.ClientSession(cookies={
"secretkey":self.secret_key}) as session:
async with session.post(self.vip_url + f"?steam={steamid}&amount={int(amount)}&service=steam&extra={extra}", ssl=False) as response:
async with session.post(self.vip_url + f"?steam={steamid}&amount={int(amount)}&service=qiwi&extra={extra}", ssl=False) as response:
try:
result = int(await response.text())
if result == 0:

Loading…
Cancel
Save