Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/4f6901b1ff27920ba062d64676fb15a7714d39e5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
20 additions and
2 deletions
@ -74,10 +74,19 @@ namespace NzbDrone.Core.Download
{
var result = base . Test ( definition ) ;
if ( ( result = = null | | result . IsValid ) & & definition . Id ! = 0 )
if ( definition . Id = = 0 )
{
return result ;
}
if ( result = = null | | result . IsValid )
{
_downloadClientStatusService . RecordSuccess ( definition . Id ) ;
}
else
{
_downloadClientStatusService . RecordFailure ( definition . Id ) ;
}
return result ;
}
@ -75,10 +75,19 @@ namespace NzbDrone.Core.ImportLists
{
var result = base . Test ( definition ) ;
if ( ( result = = null | | result . IsValid ) & & definition . Id ! = 0 )
if ( definition . Id = = 0 )
{
return result ;
}
if ( result = = null | | result . IsValid )
{
_importListStatusService . RecordSuccess ( definition . Id ) ;
}
else
{
_importListStatusService . RecordFailure ( definition . Id ) ;
}
return result ;
}