Just max_size

This commit is contained in:
Daan Selen
2025-06-19 21:59:54 +02:00
parent 04c8f622de
commit fcdf8add53

View File

@@ -144,7 +144,7 @@ class Session(object):
options["additional_headers"] = headers
async for websocket in websockets.asyncio.client.connect(self.url, proxy=self._proxy, process_exception=util._process_websocket_exception, **options):
async for websocket in websockets.asyncio.client.connect(self.url, proxy=self._proxy, process_exception=util._process_websocket_exception, max_size=None, **options):
self.alive = True
self._socket_open.set()
try: