aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.MediaEncoding/Encoder/EncodingUtils.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2024-08-28 23:09:17 +0200
committerBond_009 <bond.009@outlook.com>2024-08-28 23:09:17 +0200
commit95200ad225bced0bf157098f1f9e034aa609533e (patch)
tree560bb0d75cb9384ce298fb85ac2ca3bab97fa756 /MediaBrowser.MediaEncoding/Encoder/EncodingUtils.cs
parent6c8ca30f7fc02170901a969c71dc35ec8992ad02 (diff)
Improve error message when image extraction times out
The exception will get logged higher up the call stack.
Diffstat (limited to 'MediaBrowser.MediaEncoding/Encoder/EncodingUtils.cs')
-rw-r--r--MediaBrowser.MediaEncoding/Encoder/EncodingUtils.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.MediaEncoding/Encoder/EncodingUtils.cs b/MediaBrowser.MediaEncoding/Encoder/EncodingUtils.cs
index c5f500e76..2daeac734 100644
--- a/MediaBrowser.MediaEncoding/Encoder/EncodingUtils.cs
+++ b/MediaBrowser.MediaEncoding/Encoder/EncodingUtils.cs
@@ -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);
}