Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/3423bdf53a450fdcbc1e7b873c33d8006979e852
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
1 additions and
1 deletions
@ -553,7 +553,7 @@ namespace Jellyfin.Api.Helpers
: "FFmpeg.DirectStream-" ;
}
var logFilePath = Path . Combine ( _serverConfigurationManager . ApplicationPaths . LogDirectoryPath , logFilePrefix + DateTime . Now . ToString ( "yyyy-MM-dd_HH-mm-ss" ) + "_" + state . Request . MediaSourceId + ".log" ) ;
var logFilePath = Path . Combine ( _serverConfigurationManager . ApplicationPaths . LogDirectoryPath , logFilePrefix + DateTime . Now . ToString ( "yyyy-MM-dd_HH-mm-ss" , CultureInfo . InvariantCulture ) + "_" + state . Request . MediaSourceId + "_" + Guid . NewGuid ( ) . ToString ( "N" ) + ".log" ) ;
// FFmpeg writes debug/error info to stderr. This is useful when debugging so let's put it in the log directory.
Stream logStream = new FileStream ( logFilePath , FileMode . Create , FileAccess . Write , FileShare . Read , IODefaults . FileStreamBufferSize , true ) ;