[IcyParser] Add additional exception catch

This commit is contained in:
aikaterna
2022-04-15 10:28:06 -07:00
committed by GitHub
parent 3559a9fad1
commit 0289347af7

View File

@@ -46,7 +46,7 @@ class IcyParser(commands.Cog):
return title, streamurl, image
except (KeyError, aiohttp.client_exceptions.ClientConnectionError):
except (KeyError, aiohttp.client_exceptions.ClientConnectionError, aiohttp.client_exceptions.ClientResponseError):
return None, None, None
def cog_unload(self):