Skip to content

Commit

Permalink
more bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lunamidori5 committed Jan 19, 2025
1 parent 2066184 commit 3d0cd6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Webserver/Programs/Downloader/helper_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ async def download_files(FILES):
raise RuntimeError(f"Failed to download files: {response.status}")

async def download_keys(KEY):
headers = {"Discord-ID": random_id, "key": get_api_key()}
headers = {"Discord-ID": random_id, "key": str(await get_api_key())}
async with ClientSession() as session:
async with session.get(KEY, headers=headers) as response:
if response.status == 200:
Expand Down

0 comments on commit 3d0cd6b

Please sign in to comment.