Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/120828d8d03da08a55edfbce5bfe1463bf06eae3 You should set ROOT_URL correctly, otherwise the web may not work correctly.

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

Co-authored-by: Cody Robibero <cody@robibe.ro>
pull/6898/head
Jonas Resch 3 years ago committed by GitHub
parent 6bbfcf1906
commit 120828d8d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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();

Loading…
Cancel
Save