[CA1801] Parameter is never used. Remove the parameter or use it in the method body.

This commit is contained in:
Cody Robibero
2021-07-10 10:09:02 -06:00
parent 4281722d5a
commit 65f8d8c0cd
9 changed files with 22 additions and 38 deletions

View File

@@ -1496,7 +1496,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;
}