Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/c5285cee1c1819a45a6f6ce240eb6e1c108d3f7e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
7 additions and
9 deletions
@ -417,6 +417,8 @@ namespace Jellyfin.Api.Controllers
IsForced = body . IsForced ,
Stream = memoryStream
} ) . ConfigureAwait ( false ) ;
_providerManager . QueueRefresh ( video . Id , new MetadataRefreshOptions ( new DirectoryService ( _fileSystem ) ) , RefreshPriority . High ) ;
return NoContent ( ) ;
}
@ -187,8 +187,8 @@ namespace MediaBrowser.Providers.Subtitles
{
var saveInMediaFolder = libraryOptions . SaveSubtitlesWithMedia ;
using var stream = response . Stream ;
using var memoryStream = new MemoryStream ( ) ;
await using var stream = response . Stream ;
await using var memoryStream = new MemoryStream ( ) ;
await stream . CopyToAsync ( memoryStream ) . ConfigureAwait ( false ) ;
memoryStream . Position = 0 ;
@ -236,7 +236,7 @@ namespace MediaBrowser.Providers.Subtitles
foreach ( var savePath in savePaths )
{
_logger . LogInformation ( "Saving subtitles to { 0 }", savePath ) ;
_logger . LogInformation ( "Saving subtitles to { SavePath }", savePath ) ;
_monitor . ReportFileSystemChangeBeginning ( savePath ) ;
@ -254,13 +254,9 @@ namespace MediaBrowser.Providers.Subtitles
{
// Bug in analyzer -- https://github.com/dotnet/roslyn-analyzers/issues/5160
#pragma warning disable CA1508
exs ? ? = new List < Exception > ( )
{
ex
} ;
( exs ? ? = new List < Exception > ( ) ) . Add ( ex ) ;
#pragma warning restore CA1508
}
}
finally
{
_monitor . ReportFileSystemChangeComplete ( savePath , false ) ;