diff --git a/poll_services.py b/poll_services.py index f34df2a..723da1d 100644 --- a/poll_services.py +++ b/poll_services.py @@ -17,6 +17,7 @@ async def check_service(client: aiohttp.ClientSession, s: service) -> log: ssl=True if s.public_access else False, allow_redirects=True, timeout=timeout, + auto_decompress=False, ) case 1: r = await client.get( @@ -24,6 +25,7 @@ async def check_service(client: aiohttp.ClientSession, s: service) -> log: ssl=True if s.public_access else False, allow_redirects=True, timeout=timeout, + auto_decompress=False, ) case _: raise Exception("UNKNOWN PING TYPE")