Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/fcb0d8a93084518472aa8bedc99cac22dc7d0a96
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
15 additions and
1 deletions
@ -124,14 +124,23 @@ namespace NzbDrone.Core.Download.Clients.Deluge
}
var items = new List < DownloadClientItem > ( ) ;
var ignoredCount = 0 ;
foreach ( var torrent in torrents )
{
if ( torrent . Hash = = null )
// Silently ignore torrents with no hash
if ( torrent . Hash . IsNullOrWhiteSpace ( ) )
{
continue ;
}
// Ignore torrents without a name, but track to log a single warning for all invalid torrents.
if ( torrent . Name . IsNullOrWhiteSpace ( ) )
{
ignoredCount + + ;
continue ;
}
var item = new DownloadClientItem ( ) ;
item . DownloadId = torrent . Hash . ToUpper ( ) ;
item . Title = torrent . Name ;
@ -189,6 +198,11 @@ namespace NzbDrone.Core.Download.Clients.Deluge
items . Add ( item ) ;
}
if ( ignoredCount > 0 )
{
_logger . Warn ( "{0} torrent(s) were ignored becuase they did not have a title, check Deluge and remove any invalid torrents" ) ;
}
return items ;
}