Improve error message when image extraction times out

The exception will get logged higher up the call stack.
This commit is contained in:
Bond_009
2024-08-28 23:09:17 +02:00
parent 6c8ca30f7f
commit 95200ad225
2 changed files with 4 additions and 10 deletions

View File

@@ -42,7 +42,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
// If there's more than one we'll need to use the concat command
if (inputFiles.Count > 1)
{
var files = string.Join("|", inputFiles.Select(NormalizePath));
var files = string.Join('|', inputFiles.Select(NormalizePath));
return string.Format(CultureInfo.InvariantCulture, "concat:\"{0}\"", files);
}