Skip to content

Commit

Permalink
Log instead of throwing
Browse files Browse the repository at this point in the history
  • Loading branch information
ScrubN committed Jan 5, 2024
1 parent c10b8d2 commit 60ed240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TwitchDownloaderCore/ClipDownloader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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%"));
Expand Down

0 comments on commit 60ed240

Please sign in to comment.