diff --git a/plugins/meme.py b/plugins/meme.py index 38018a8..2293211 100644 --- a/plugins/meme.py +++ b/plugins/meme.py @@ -83,7 +83,7 @@ async def meme(ctx): URL = 'https://api.imgflip.com/caption_image' try: - http_session = aiohttp.ClientSession() + #http_session = aiohttp.ClientSession() async with http_session.post(URL, params=params) as resp: response = await resp.json() print(f"Generated Meme = {response['success']}\nImage Link = {response['data']['url']}\nPage Link = {response['data']['page_url']}")