aboutsummaryrefslogtreecommitdiffhomepage
path: root/libs/socketio/client.py
diff options
context:
space:
mode:
authormorpheus65535 <[email protected]>2022-11-07 13:06:49 -0500
committermorpheus65535 <[email protected]>2022-11-07 13:08:27 -0500
commitbbe2483e21c2c1549ceeed16f021f9581b899f70 (patch)
treebcc2bef2f55789ec6e6c64809c07fb4f4d3d9c86 /libs/socketio/client.py
parent708fbfcd8ec0620647975be39a1f6acbbf08f767 (diff)
downloadbazarr-bbe2483e21c2c1549ceeed16f021f9581b899f70.tar.gz
bazarr-bbe2483e21c2c1549ceeed16f021f9581b899f70.zip
Updated vendored dependencies.
Diffstat (limited to 'libs/socketio/client.py')
-rw-r--r--libs/socketio/client.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/socketio/client.py b/libs/socketio/client.py
index 5046ea860..58d381b1d 100644
--- a/libs/socketio/client.py
+++ b/libs/socketio/client.py
@@ -680,7 +680,7 @@ class Client(object):
"""Handle the Engine.IO connection event."""
self.logger.info('Engine.IO connection established')
self.sid = self.eio.sid
- real_auth = self._get_real_value(self.connection_auth)
+ real_auth = self._get_real_value(self.connection_auth) or {}
for n in self.connection_namespaces:
self._send_packet(self.packet_class(
packet.CONNECT, data=real_auth, namespace=n))