Websocket SSL is verified by default

This commit is contained in:
DevilXD
2024-07-16 18:09:44 +02:00
parent 90c3deff29
commit 07baba3935

View File

@@ -121,7 +121,7 @@ class Websocket:
proxy = None
for delay in backoff:
try:
async with session.ws_connect(ws_url, ssl=True, proxy=proxy) as websocket:
async with session.ws_connect(ws_url, proxy=proxy) as websocket:
yield websocket
backoff.reset()
except (