Browse Source

Add log line to show if we disconnected normally.

pull/2133/head
Rapptz 6 years ago
parent
commit
abb9c067cc
  1. 1
      discord/voice_client.py

1
discord/voice_client.py

@ -247,6 +247,7 @@ class VoiceClient:
# 4014 - voice channel has been deleted.
# 4015 - voice server has crashed
if exc.code in (1000, 4014, 4015):
log.info('Disconnecting from voice normally, close code %d.', exc.code)
await self.disconnect()
break

Loading…
Cancel
Save