Browse Source

Update linking_updater.py

pull/4/head
Purpur 3 years ago
committed by GitHub
parent
commit
0011445800
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 6
      cogs/linking_updater.py

6
cogs/linking_updater.py

@ -29,10 +29,13 @@ class Linking_updater(commands.Cog):
file.close()
guild = self.bot.get_guild(guild_id)
i = -1
print("1")
for client in data['users']:
print("2")
i += 1
member = guild.get_member(client['discord_id'])
if member:
print("3")
api_key = client['client_api_key']
url = "https://panel.birdflop.com/api/client"
headers = {
@ -41,8 +44,9 @@ class Linking_updater(commands.Cog):
}
async with aiohttp.ClientSession() as session:
async with session.get(url, headers=headers) as response:
print("4")
if response.status == 200:
logging.info("200")
print("5")
# Formats response for servers in JSON format
servers_json_response = await response.json()

Loading…
Cancel
Save