Browse Source
Fix potential audio delay during source cleanup
pull/7563/head
Haruka
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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 |
|
|
|