diff options
| author | Cody Robibero <cody@robibe.ro> | 2021-07-10 10:09:02 -0600 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2021-07-10 10:09:02 -0600 |
| commit | 65f8d8c0cd6cf64cebcbc0cc9279d9857ebf343c (patch) | |
| tree | 005197f12671ec838186369579951b236c8e4650 /Jellyfin.Api/Controllers/VideoHlsController.cs | |
| parent | 4281722d5a50347c26ee92dcd47b3bbad5cedbbf (diff) | |
[CA1801] Parameter is never used. Remove the parameter or use it in the method body.
Diffstat (limited to 'Jellyfin.Api/Controllers/VideoHlsController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/VideoHlsController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/VideoHlsController.cs b/Jellyfin.Api/Controllers/VideoHlsController.cs index 6a720b1a4..4e7bb695a 100644 --- a/Jellyfin.Api/Controllers/VideoHlsController.cs +++ b/Jellyfin.Api/Controllers/VideoHlsController.cs @@ -485,7 +485,7 @@ namespace Jellyfin.Api.Controllers args += " -ar " + state.OutputAudioSampleRate.Value.ToString(CultureInfo.InvariantCulture); } - args += _encodingHelper.GetAudioFilterParam(state, _encodingOptions, true); + args += _encodingHelper.GetAudioFilterParam(state, _encodingOptions); return args; } |
