From 1fbfc13ef0957022720ebc51a3cf19269dd60d08 Mon Sep 17 00:00:00 2001 From: lay295 Date: Thu, 3 Sep 2020 11:20:36 -0400 Subject: [PATCH] Add message reporting on chat download --- TwitchDownloaderCore/ChatDownloader.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/TwitchDownloaderCore/ChatDownloader.cs b/TwitchDownloaderCore/ChatDownloader.cs index 0bb8dfa3..f39d2faf 100644 --- a/TwitchDownloaderCore/ChatDownloader.cs +++ b/TwitchDownloaderCore/ChatDownloader.cs @@ -99,6 +99,7 @@ public async Task DownloadAsync(IProgress progress, Cancellation int percent = (int)Math.Floor((latestMessage - videoStart) / videoDuration * 100); progress.Report(new ProgressReport() { reportType = ReportType.Percent, data = percent }); + progress.Report(new ProgressReport() { reportType = ReportType.Message, data = $"Downloading {percent}%" }); cancellationToken.ThrowIfCancellationRequested();