From 60ed24010787c0f17455a7f6bbbd9e3577299c2a Mon Sep 17 00:00:00 2001 From: ScrubN <72096833+ScrubN@users.noreply.github.com> Date: Fri, 5 Jan 2024 01:52:30 -0500 Subject: [PATCH] Log instead of throwing --- TwitchDownloaderCore/ClipDownloader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TwitchDownloaderCore/ClipDownloader.cs b/TwitchDownloaderCore/ClipDownloader.cs index 35957106..882d29e7 100644 --- a/TwitchDownloaderCore/ClipDownloader.cs +++ b/TwitchDownloaderCore/ClipDownloader.cs @@ -77,7 +77,7 @@ void DownloadProgressHandler(StreamCopyProgress streamProgress) if (!File.Exists(downloadOptions.Filename)) { File.Move(tempFile, downloadOptions.Filename); - throw new FileNotFoundException("Unable to serialize metadata (is FFmpeg missing?). The download has been completed without custom metadata."); + _progress.Report(new ProgressReport(ReportType.Log, "Unable to serialize metadata. The download has been completed without custom metadata.")); } _progress.Report(new ProgressReport(ReportType.SameLineStatus, "Encoding Clip Metadata 100%"));