Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/833a1da355f7e1d4c734df94d1e286015403427b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
4 deletions
@ -183,6 +183,7 @@
- [btopherjohnson ](https://github.com/btopherjohnson )
- [GeorgeH005 ](https://github.com/GeorgeH005 )
- [Vedant ](https://github.com/viktory36/ )
- [NotSaifA ](https://github.com/NotSaifA )
# Emby Contributors
@ -943,7 +943,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
var timeoutMs = _configurationManager . Configuration . ImageExtractionTimeoutMs ;
timeoutMs = timeoutMs < = 0 ? DefaultHdrImageExtractionTimeout : timeoutMs ;
while ( isResponsive )
while ( isResponsive & & ! cancellationToken . IsCancellationRequested )
{
try
{
@ -957,8 +957,6 @@ namespace MediaBrowser.MediaEncoding.Encoder
// We don't actually expect the process to be finished in one timeout span, just that one image has been generated.
}
cancellationToken . ThrowIfCancellationRequested ( ) ;
var jpegCount = _fileSystem . GetFilePaths ( targetDirectory ) . Count ( ) ;
isResponsive = jpegCount > lastCount ;
@ -967,7 +965,12 @@ namespace MediaBrowser.MediaEncoding.Encoder
if ( ! ranToCompletion )
{
_logger . LogInformation ( "Stopping trickplay extraction due to process inactivity." ) ;
if ( ! isResponsive )
{
_logger . LogInformation ( "Trickplay process unresponsive." ) ;
}
_logger . LogInformation ( "Stopping trickplay extraction." ) ;
StopProcess ( processWrapper , 1000 ) ;
}
}