Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/94311bda1f81aadd34248591dfa66a94524fe210
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
10 additions and
7 deletions
@ -100,15 +100,18 @@ namespace NzbDrone.Core.MediaFiles
var videoFiles = _diskScanService . GetVideoFiles ( directoryInfo . FullName ) ;
foreach ( var videoFile in videoFiles )
if ( downloadClientItem = = null )
{
if ( _diskProvider . IsFileLocked ( videoFile ) )
foreach ( var videoFile in videoFiles )
{
_logger . Debug ( "[{0}] is currently locked by another process, skipping" , videoFile ) ;
return new List < ImportResult >
{
new ImportResult ( new ImportDecision ( new LocalEpisode { Path = videoFile } , "Locked file, try again later" ) , "Locked file, try again later" )
} ;
if ( _diskProvider . IsFileLocked ( videoFile ) )
{
_logger . Debug ( "[{0}] is currently locked by another process, skipping" , videoFile ) ;
return new List < ImportResult >
{
new ImportResult ( new ImportDecision ( new LocalEpisode { Path = videoFile } , "Locked file, try again later" ) , "Locked file, try again later" )
} ;
}
}
}