Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion botoy/_internal/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ async def connect(self):
else:
logger.info(f"尝试连接[{connection_url}]...")
self.state = "connecting"
ws = await ws_connect(connection_url, open_timeout=10)
ws = await ws_connect(connection_url, open_timeout=10,compression=None)
except InvalidURI as e:
logger.error(f"连接地址有误[{connection_url}]: {e}")
except asyncio.TimeoutError as e:
Expand Down