fix: fixed update command again
This commit is contained in:
parent
5398fb77a8
commit
601a9642c7
1 changed files with 2 additions and 2 deletions
|
@ -80,9 +80,9 @@ class Pterodactyl(commands.Cog):
|
|||
await interaction_message.edit(f"Something went wrong.\nError: `{e}`", ephemeral=True)
|
||||
return
|
||||
async with session.get(await self.get_url(interaction.guild, "resources"), headers=headers) as response:
|
||||
response_dict = response.json()
|
||||
response_dict = await response.json()
|
||||
async with session.get(await self.get_url(interaction.guild, "startup"), headers=headers) as response:
|
||||
list_var_response_dict = response.json()
|
||||
list_var_response_dict = await response.json()
|
||||
updater_startup_vars = [
|
||||
{
|
||||
"key": "FLAGS",
|
||||
|
|
Reference in a new issue