Skip to content

Commit

Permalink
Don't use interpolated strings
Browse files Browse the repository at this point in the history
Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
  • Loading branch information
gnattu and cvium committed May 31, 2024
1 parent 2cb74e3 commit 78e3ee1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1189,7 +1189,9 @@ public string GetInputArgument(EncodingJobInfo state, EncodingOptions options, s
{
var tmpConcatPath = Path.Join(_configurationManager.GetTranscodePath(), state.MediaSource.Id + ".concat");
_mediaEncoder.GenerateConcatConfig(state.MediaSource, tmpConcatPath);
arg.Append(CultureInfo.InvariantCulture, $" -f concat -safe 0 -i \"{tmpConcatPath}\"");
arg.Append(" -f concat -safe 0 -i \"")
.Append(tmpConcatPath)
.Append('"');
}
else
{
Expand Down

0 comments on commit 78e3ee1

Please sign in to comment.