From 2af618fde20a1cdda49f23428b1213307e794739 Mon Sep 17 00:00:00 2001 From: Patryk Mazur Date: Wed, 22 Apr 2026 20:31:51 +0200 Subject: [PATCH] Verbosity fix V1.0.7 --- bot/utils/helpers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/bot/utils/helpers.py b/bot/utils/helpers.py index 89ccbca..cc4eaa2 100644 --- a/bot/utils/helpers.py +++ b/bot/utils/helpers.py @@ -56,6 +56,7 @@ def download_video(yt_url: str) -> dict: 'format': 'bestvideo+bestaudio/best', 'merge_output_format': 'mp4', 'outtmpl': os.path.join(DOWNLOADS, f'%(title)s_{url_hash}.%(ext)s'), + "no_overwrites": True, 'quiet': True, }