Browse Source

Fix potential audio delay during source cleanup

pull/7563/head
Haruka 3 years ago
committed by GitHub
parent
commit
c403fb49d1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      discord/player.py

2
discord/player.py

@ -694,8 +694,8 @@ class AudioPlayer(threading.Thread):
self._current_error = exc
self.stop()
finally:
self.source.cleanup()
self._call_after()
self.source.cleanup()
def _call_after(self) -> None:
error = self._current_error

Loading…
Cancel
Save