Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/41dda3af483db5b82dc1b2afd9942874fd386da8
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
32 additions and
0 deletions
@ -68,6 +68,38 @@ namespace NzbDrone.Core.Download.Clients.UTorrent
return hash ;
}
protected override string AddFromMagnetLink ( RemoteMovie remoteEpisode , string hash , string magnetLink )
{
_proxy . AddTorrentFromUrl ( magnetLink , Settings ) ;
_proxy . SetTorrentLabel ( hash , Settings . TvCategory , Settings ) ;
/ * var isRecentEpisode = remoteEpisode . IsRecentEpisode ( ) ;
if ( isRecentEpisode & & Settings . RecentTvPriority = = ( int ) UTorrentPriority . First | |
! isRecentEpisode & & Settings . OlderTvPriority = = ( int ) UTorrentPriority . First )
{
_proxy . MoveTorrentToTopInQueue ( hash , Settings ) ;
} * /
return hash ;
}
protected override string AddFromTorrentFile ( RemoteMovie remoteEpisode , string hash , string filename , byte [ ] fileContent )
{
_proxy . AddTorrentFromFile ( filename , fileContent , Settings ) ;
_proxy . SetTorrentLabel ( hash , Settings . TvCategory , Settings ) ;
/ * var isRecentEpisode = remoteEpisode . IsRecentEpisode ( ) ;
if ( isRecentEpisode & & Settings . RecentTvPriority = = ( int ) UTorrentPriority . First | |
! isRecentEpisode & & Settings . OlderTvPriority = = ( int ) UTorrentPriority . First )
{
_proxy . MoveTorrentToTopInQueue ( hash , Settings ) ;
} * /
return hash ;
}
public override string Name = > "uTorrent" ;
public override IEnumerable < DownloadClientItem > GetItems ( )