From c3ef57b8b6b2bcae4d0015a7c0f6867b86c8ea9b Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Sun, 28 Dec 2025 23:32:05 -0600 Subject: [PATCH] Make subscriptions quicker --- Tesses.YouTubeDownloader/src/YouTubeDownloader.tcross | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tesses.YouTubeDownloader/src/YouTubeDownloader.tcross b/Tesses.YouTubeDownloader/src/YouTubeDownloader.tcross index 0aa8020..24c3c69 100644 --- a/Tesses.YouTubeDownloader/src/YouTubeDownloader.tcross +++ b/Tesses.YouTubeDownloader/src/YouTubeDownloader.tcross @@ -964,7 +964,7 @@ class TYTD.Downloader { if(notify) { this.PutVideoInfoIfNotExists(videoId); - var res = this.GetVideo(id); + var res = this.GetVideo(videoId); if(res != null) this.Bell.Invoke(this,{ Video = res @@ -972,7 +972,7 @@ class TYTD.Downloader { } if(downloadRes != Resolution.NoDownload) { - this.DownloadVideo(id,downloadRes); + this.DownloadVideo(videoId,downloadRes); } } }