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();