Update mkbsd.py to disable SSL verification in aiohttp.ClientSession

This commit is contained in:
Aholicknight 2024-09-28 01:06:39 -06:00
parent f121a8d681
commit 92a3ad0992

View file

@ -23,7 +23,7 @@ async def download_image(session, image_url, file_path):
async def main():
try:
async with aiohttp.ClientSession() as session:
async with aiohttp.ClientSession(connector=aiohttp.TCPConnector(verify_ssl=False)) as session:
async with session.get(url) as response:
if response.status != 200:
raise Exception(f"⛔ Failed to fetch JSON file: {response.status}")