Be defensive in case Discord breaks something with WS URLs again

This commit is contained in:
Rapptz 2020-08-05 05:07:44 -04:00
parent a1d6ff82dd
commit 250f29989b

View File

@ -188,6 +188,10 @@ class VoiceClient:
return
self.endpoint, _, _ = endpoint.rpartition(':')
if self.endpoint.startswith('wss://'):
# Just in case, strip it off since we're going to add it later
self.endpoint = self.endpoint[6:]
# This gets set later
self.endpoint_ip = None