Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/40b5702ca6fc0b384708e8ee501821f89b341a37?style=split&whitespace=ignore-eol
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
8 additions and
0 deletions
@ -110,6 +110,14 @@ namespace NzbDrone.Core.Download
trackedDownload . State = TrackedDownloadState . Importing ;
trackedDownload . State = TrackedDownloadState . Importing ;
var outputPath = trackedDownload . DownloadItem . OutputPath . FullPath ;
var outputPath = trackedDownload . DownloadItem . OutputPath . FullPath ;
if ( trackedDownload . RemoteMovie = = null )
{
trackedDownload . State = TrackedDownloadState . ImportPending ;
trackedDownload . Warn ( "Unknown Movie" , outputPath ) ;
return ;
}
var importResults = _downloadedMovieImportService . ProcessPath ( outputPath , ImportMode . Auto , trackedDownload . RemoteMovie . Movie , trackedDownload . DownloadItem ) ;
var importResults = _downloadedMovieImportService . ProcessPath ( outputPath , ImportMode . Auto , trackedDownload . RemoteMovie . Movie , trackedDownload . DownloadItem ) ;
if ( VerifyImport ( trackedDownload , importResults ) )
if ( VerifyImport ( trackedDownload , importResults ) )