From 00e26fa6ac7a37eb22112d7c990aae820262b66b Mon Sep 17 00:00:00 2001 From: Shiva Sai K <129726163+shiva-sai-824@users.noreply.github.com> Date: Sun, 4 Jan 2026 19:44:44 +0530 Subject: [PATCH] Update app/ytdl.py Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- app/ytdl.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/ytdl.py b/app/ytdl.py index 6fda885..6643c35 100644 --- a/app/ytdl.py +++ b/app/ytdl.py @@ -368,6 +368,7 @@ class DownloadQueue: download.info.percent = None download.info.speed = None download.info.eta = None + asyncio.create_task(self.notifier.updated(download.info)) # Create a new download with the same info dldirectory, _ = self.__calc_download_path(download.info.quality, download.info.format, download.info.folder) output = self.config.OUTPUT_TEMPLATE if len(download.info.custom_name_prefix) == 0 else f'{download.info.custom_name_prefix}.{self.config.OUTPUT_TEMPLATE}'