Browse Source
Fix possible FFmpegAudio AttributeError in __del__
pull/9576/head
Imayhaveborkedit
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
1 deletions
-
discord/player.py
|
|
@ -212,7 +212,8 @@ class FFmpegAudio(AudioSource): |
|
|
|
return process |
|
|
|
|
|
|
|
def _kill_process(self) -> None: |
|
|
|
proc = self._process |
|
|
|
# this function gets called in __del__ so instance attributes might not even exist |
|
|
|
proc = getattr(self, '_process', MISSING) |
|
|
|
if proc is MISSING: |
|
|
|
return |
|
|
|
|
|
|
|