Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/ca00b8a3c7a44517dfad8454a290efbda1dc5812
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
26 additions and
0 deletions
@ -417,6 +417,27 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.QBittorrentTests
result . OutputPath . FullPath . Should ( ) . Be ( torrent . ContentPath ) ;
}
[Test]
public void missingFiles_item_should_have_required_properties ( )
{
var torrent = new QBittorrentTorrent
{
Hash = "HASH" ,
Name = _title ,
Size = 1000 ,
Progress = 0.7 ,
Eta = 8640000 ,
State = "missingFiles" ,
Label = "" ,
SavePath = ""
} ;
GivenTorrents ( new List < QBittorrentTorrent > { torrent } ) ;
var item = Subject . GetItems ( ) . Single ( ) ;
VerifyWarning ( item ) ;
item . RemainingTime . Should ( ) . NotHaveValue ( ) ;
}
[Test]
public void Download_should_return_unique_id ( )
{
@ -178,6 +178,11 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
item . Message = "The download is stalled with no connections" ;
break ;
case "missingFiles" : // torrent is being downloaded, but no connection were made
item . Status = DownloadItemStatus . Warning ;
item . Message = "The download is missing files" ;
break ;
case "metaDL" : // torrent magnet is being downloaded
if ( config . DhtEnabled )
{