Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/82ad2633fdfb1c37a158057c7935f83e1129eda7?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
0 deletions
@ -23,6 +23,11 @@ namespace MediaBrowser.Controller.ClientEvent
{
{
var fileName = $"upload_{clientName}_{clientVersion}_{DateTime.UtcNow:yyyyMMddHHmmss}_{Guid.NewGuid():N}.log" ;
var fileName = $"upload_{clientName}_{clientVersion}_{DateTime.UtcNow:yyyyMMddHHmmss}_{Guid.NewGuid():N}.log" ;
var logFilePath = Path . Combine ( _applicationPaths . LogDirectoryPath , fileName ) ;
var logFilePath = Path . Combine ( _applicationPaths . LogDirectoryPath , fileName ) ;
if ( ! Path . GetFullPath ( logFilePath ) . StartsWith ( _applicationPaths . LogDirectoryPath , StringComparison . Ordinal ) )
{
throw new ArgumentException ( "Path resolved to filename not in log directory" ) ;
}
await using var fileStream = new FileStream ( logFilePath , FileMode . CreateNew , FileAccess . Write , FileShare . None ) ;
await using var fileStream = new FileStream ( logFilePath , FileMode . CreateNew , FileAccess . Write , FileShare . None ) ;
await fileContents . CopyToAsync ( fileStream ) . ConfigureAwait ( false ) ;
await fileContents . CopyToAsync ( fileStream ) . ConfigureAwait ( false ) ;
return fileName ;
return fileName ;