Browse Source

double vip fix

master
gsd 2 years ago
parent
commit
f6a5589e80
  1. 4
      backend_integration.py
  2. 2
      paybot.facti13.py

4
backend_integration.py

@ -34,10 +34,10 @@ class BackendClient:
self.warn = False
return self.up
async def vip(self, steamid, amount: int, extra: str):
async def vip(self, steamid, amount: int, extra: str, unique: 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=qiwi&extra={extra}", ssl=False) as response:
async with session.post(self.vip_url + f"?steam={steamid}&amount={int(amount)}&service=qiwi&extra={extra}&unique={unique}", ssl=False) as response:
try:
result = int(await response.text())
if result == 0:

2
paybot.facti13.py

@ -80,7 +80,7 @@ class Client:
########################################
# add vip
info(f"Add vip {steam2}, amount {seconds}")
await self.backend.vip(steam2, seconds, f"rub={int(money)};")
await self.backend.vip(steam2, seconds, f"rub={int(money)};", unique=f"qiwi_{t.id}")
if __name__ == "__main__":
print("Build date: "+os.getenv("BUILDDATE", "not setted"))

Loading…
Cancel
Save