diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2021-09-21 20:49:14 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-21 20:49:14 +0200 |
| commit | b4c05180017edd9067d5df5e26a382410125fd60 (patch) | |
| tree | 15d9e278e486fe307b3de16c192782c5f8ec2fba | |
| parent | 46701e16b5a89eb99223320f0212aa4e1fb9afda (diff) | |
| parent | f6622bd810fac793829df27f8caf575943b807c5 (diff) | |
Merge pull request #6588 from Bond-009/escape
Fix issue #6587
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs b/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs index d806a0295..a943efcc7 100644 --- a/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs +++ b/Emby.Server.Implementations/LiveTv/EmbyTV/EncodedRecorder.cs @@ -188,7 +188,7 @@ namespace Emby.Server.Implementations.LiveTv.EmbyTV CultureInfo.InvariantCulture, "-i \"{0}\" {2} -map_metadata -1 -threads {6} {3}{4}{5} -y \"{1}\"", inputTempFile, - targetFile, + targetFile.Replace("\"", "\\\""), // Escape quotes in filename videoArgs, GetAudioArgs(mediaSource), subtitleArgs, |
