Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/058ab4b4a8f5b0e6cab178692ab8b85a818d6e08
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
13 additions and
5 deletions
@ -143,11 +143,6 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
SeedRatio = torrent . Ratio
} ;
if ( version > = new Version ( "2.6.1" ) )
{
item . OutputPath = _remotePathMappingService . RemapRemoteToLocal ( Settings . Host , new OsPath ( torrent . ContentPath ) ) ;
}
// Avoid removing torrents that haven't reached the global max ratio.
// Removal also requires the torrent to be paused, in case a higher max ratio was set on the torrent itself (which is not exposed by the api).
item . CanMoveFiles = item . CanBeRemoved = torrent . State = = "pausedUP" & & HasReachedSeedLimit ( torrent , config ) ;
@ -209,6 +204,19 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent
break ;
}
if ( version > = new Version ( "2.6.1" ) )
{
if ( torrent . ContentPath ! = torrent . SavePath )
{
item . OutputPath = _remotePathMappingService . RemapRemoteToLocal ( Settings . Host , new OsPath ( torrent . ContentPath ) ) ;
}
else if ( item . Status = = DownloadItemStatus . Completed )
{
item . Status = DownloadItemStatus . Warning ;
item . Message = "Unable to import since content path is equal to root download directory, perhaps Keep top-level folder was disabled for this torrent?" ;
}
}
queueItems . Add ( item ) ;
}