Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/608eb1051839a170f9a8832ca5626184a89452c9
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
1 additions and
6 deletions
@ -96,7 +96,7 @@ namespace NzbDrone.Core.Download.Clients.DownloadStation
SeedRatio = GetSeedRatio ( torrent ) ,
Status = GetStatus ( torrent ) ,
Message = GetMessage ( torrent ) ,
CanMoveFiles = Is Complet ed( torrent ) ,
CanMoveFiles = Is Finish ed( torrent ) ,
CanBeRemoved = IsFinished ( torrent )
} ;
@ -216,11 +216,6 @@ namespace NzbDrone.Core.Download.Clients.DownloadStation
return torrent . Status = = DownloadStationTaskStatus . Finished ;
}
protected bool IsCompleted ( DownloadStationTask torrent )
{
return torrent . Status = = DownloadStationTaskStatus . Seeding | | IsFinished ( torrent ) | | ( torrent . Status = = DownloadStationTaskStatus . Waiting & & torrent . Size ! = 0 & & GetRemainingSize ( torrent ) < = 0 ) ;
}
protected string GetMessage ( DownloadStationTask torrent )
{
if ( torrent . StatusExtra ! = null )