Make subscriptions quicker

This commit is contained in:
2025-12-28 23:32:05 -06:00
parent deea6b32a4
commit c3ef57b8b6

View File

@@ -964,7 +964,7 @@ class TYTD.Downloader {
if(notify) if(notify)
{ {
this.PutVideoInfoIfNotExists(videoId); this.PutVideoInfoIfNotExists(videoId);
var res = this.GetVideo(id); var res = this.GetVideo(videoId);
if(res != null) if(res != null)
this.Bell.Invoke(this,{ this.Bell.Invoke(this,{
Video = res Video = res
@@ -972,7 +972,7 @@ class TYTD.Downloader {
} }
if(downloadRes != Resolution.NoDownload) if(downloadRes != Resolution.NoDownload)
{ {
this.DownloadVideo(id,downloadRes); this.DownloadVideo(videoId,downloadRes);
} }
} }
} }