From 509c106814046c918c5e00b2449df79030d0c9e3 Mon Sep 17 00:00:00 2001 From: manusoft Date: Tue, 9 Jun 2026 01:46:58 +0400 Subject: [PATCH] Update event subscripion in webpage. --- docs/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.html b/docs/index.html index 1f61a7e..e27a8d1 100644 --- a/docs/index.html +++ b/docs/index.html @@ -137,8 +137,8 @@

Simple. Powerful. Modern.

.WithEmbedMetadata() .WithEmbedThumbnail(); -ytdlp.OnProgressDownload += (s, e) => Console.WriteLine($"Progress: {e.Percent:F2}%"); -ytdlp.OnCompleteDownload += (s, msg) => Console.WriteLine($"Download complete: {msg}"); +ytdlp.ProgressDownload += (s, e) => Console.WriteLine($"Progress: {e.Percent:F2}%"); +ytdlp.DownloadCompleted += (s, msg) => Console.WriteLine($"Download complete: {msg}"); await ytdlp.DownloadAsync("https://www.youtube.com/watch?v=ABCDEFGH");