mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-04 22:24:35 -04:00
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:
parent
6bbfcf1906
commit
120828d8d0
@ -698,7 +698,7 @@ namespace MediaBrowser.Controller.MediaEncoding
|
|||||||
|
|
||||||
if (state.AudioStream != null && state.AudioStream.IsExternal)
|
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();
|
return arg.ToString();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user