From 8f86780b899e8afbdb3ebb0663c6c410110b4e44 Mon Sep 17 00:00:00 2001 From: levina <82658782+levina-lab@users.noreply.github.com> Date: Tue, 14 Sep 2021 12:04:53 +0700 Subject: [PATCH] fixes --- helpers/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/utils.py b/helpers/utils.py index caf9bcf..445bedf 100644 --- a/helpers/utils.py +++ b/helpers/utils.py @@ -18,7 +18,7 @@ def raw_converter(dl, song, video): ) async def leave_call(chat_id: int): - process = FFMPEG_PROCESSES.get(chat_id) + process = FFMPEG_PROCESS.get(chat_id) if process: try: process.send_signal(SIGINT)