Replace escaped quote string with quote character in MediaBrowser.Controller/MediaEncoding/EncodingHelper.cs

Co-authored-by: Cody Robibero <cody@robibe.ro>
This commit is contained in:
Jonas Resch 2021-12-03 19:18:43 +01:00 committed by GitHub
parent 6bbfcf1906
commit 120828d8d0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -698,7 +698,7 @@ namespace MediaBrowser.Controller.MediaEncoding
if (state.AudioStream != null && state.AudioStream.IsExternal)
{
arg.Append(" -i \"").Append(state.AudioStream.Path).Append("\"");
arg.Append(" -i \"").Append(state.AudioStream.Path).Append('"');
}
return arg.ToString();