Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/a6a2219bc487007bbd3638ffa1aa6461d7d1d00b?style=split&whitespace=ignore-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
8 additions and
8 deletions
@ -125,21 +125,21 @@ namespace NzbDrone.Core.Download.Clients.Flood
item . RemainingTime = TimeSpan . FromSeconds ( properties . Eta ) ;
item . RemainingTime = TimeSpan . FromSeconds ( properties . Eta ) ;
}
}
if ( properties . Status . Contains ( " error ") )
if ( properties . Status . Contains ( " seeding") | | properties . Status . Contains ( "complete ") )
{
{
item . Status = DownloadItemStatus . Warning ;
item . Status = DownloadItemStatus . Completed ;
}
}
else if ( properties . Status . Contains ( "s eeding") | | properties . Status . Contains ( "complete ") )
else if ( properties . Status . Contains ( "s topped ") )
{
{
item . Status = DownloadItemStatus . Complet ed;
item . Status = DownloadItemStatus . Paus ed;
}
}
else if ( properties . Status . Contains ( " downloading ") )
else if ( properties . Status . Contains ( " error ") )
{
{
item . Status = DownloadItemStatus . Download ing;
item . Status = DownloadItemStatus . Warn ing;
}
}
else if ( properties . Status . Contains ( " stopped ") )
else if ( properties . Status . Contains ( " downloading ") )
{
{
item . Status = DownloadItemStatus . Paused ;
item . Status = DownloadItemStatus . Downloading ;
}
}
if ( item . Status = = DownloadItemStatus . Completed )
if ( item . Status = = DownloadItemStatus . Completed )