diff options
| author | Cody Robibero <cody@robibe.ro> | 2026-08-22 08:43:07 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-08-22 08:43:07 -0400 |
| commit | c04f11bd76acd19a1440bbb4351160642a09ef9c (patch) | |
| tree | 8063f43084f6c7ba1ad2a50fb5a0bc084a08dad4 /Emby.Server.Implementations/ScheduledTasks | |
| parent | 6617a27de30f595617b372d53910c35e49d76364 (diff) | |
| parent | 9ba91d4583f3671eaacae8e073fb53288f9b8715 (diff) | |
Merge pull request #17685 from jellyfin/GHSA-wwwm-px48-fpvq-v12
Fix GHSA-wwwm-px48-fpvq
Diffstat (limited to 'Emby.Server.Implementations/ScheduledTasks')
| -rw-r--r-- | Emby.Server.Implementations/ScheduledTasks/Tasks/AudioNormalizationTask.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/ScheduledTasks/Tasks/AudioNormalizationTask.cs b/Emby.Server.Implementations/ScheduledTasks/Tasks/AudioNormalizationTask.cs index e4939205c9..29b633530f 100644 --- a/Emby.Server.Implementations/ScheduledTasks/Tasks/AudioNormalizationTask.cs +++ b/Emby.Server.Implementations/ScheduledTasks/Tasks/AudioNormalizationTask.cs @@ -174,7 +174,7 @@ public partial class AudioNormalizationTask : IScheduledTask if (!t.NormalizationGain.HasValue && !t.LUFS.HasValue && t.IsFileProtocol) { t.LUFS = await CalculateLUFSAsync( - string.Format(CultureInfo.InvariantCulture, "-i \"{0}\"", t.Path.Replace("\"", "\\\"", StringComparison.Ordinal)), + string.Format(CultureInfo.InvariantCulture, "-i \"{0}\"", t.Path.EscapeProcessArgument()), false, cancellationToken).ConfigureAwait(false); toSaveDbItems.Add(t); |
