Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/3cc1e7bb0f088b2d8ece81fc4b6e31ea9205a4e3?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
6 additions and
0 deletions
@ -13,6 +13,7 @@ using NzbDrone.Core.Download.Clients.DownloadStation.Proxies;
using NzbDrone.Core.MediaFiles.TorrentInfo ;
using NzbDrone.Core.MediaFiles.TorrentInfo ;
using NzbDrone.Core.Parser.Model ;
using NzbDrone.Core.Parser.Model ;
using NzbDrone.Core.RemotePathMappings ;
using NzbDrone.Core.RemotePathMappings ;
using NzbDrone.Core.ThingiProvider ;
using NzbDrone.Core.Validation ;
using NzbDrone.Core.Validation ;
namespace NzbDrone.Core.Download.Clients.DownloadStation
namespace NzbDrone.Core.Download.Clients.DownloadStation
@ -47,6 +48,8 @@ namespace NzbDrone.Core.Download.Clients.DownloadStation
public override string Name = > "Download Station" ;
public override string Name = > "Download Station" ;
public override ProviderMessage Message = > new ProviderMessage ( "Lidarr is unable to connect to Download Station if 2-Factor Authentication is enabled on your DSM account" , ProviderMessageType . Warning ) ;
protected IEnumerable < DownloadStationTask > GetTasks ( )
protected IEnumerable < DownloadStationTask > GetTasks ( )
{
{
return _dsTaskProxy . GetTasks ( Settings ) . Where ( v = > v . Type . ToLower ( ) = = DownloadStationTaskType . BT . ToString ( ) . ToLower ( ) ) ;
return _dsTaskProxy . GetTasks ( Settings ) . Where ( v = > v . Type . ToLower ( ) = = DownloadStationTaskType . BT . ToString ( ) . ToLower ( ) ) ;
@ -11,6 +11,7 @@ using NzbDrone.Core.Configuration;
using NzbDrone.Core.Download.Clients.DownloadStation.Proxies ;
using NzbDrone.Core.Download.Clients.DownloadStation.Proxies ;
using NzbDrone.Core.Parser.Model ;
using NzbDrone.Core.Parser.Model ;
using NzbDrone.Core.RemotePathMappings ;
using NzbDrone.Core.RemotePathMappings ;
using NzbDrone.Core.ThingiProvider ;
using NzbDrone.Core.Validation ;
using NzbDrone.Core.Validation ;
namespace NzbDrone.Core.Download.Clients.DownloadStation
namespace NzbDrone.Core.Download.Clients.DownloadStation
@ -46,6 +47,8 @@ namespace NzbDrone.Core.Download.Clients.DownloadStation
public override string Name = > "Download Station" ;
public override string Name = > "Download Station" ;
public override ProviderMessage Message = > new ProviderMessage ( "Lidarr is unable to connect to Download Station if 2-Factor Authentication is enabled on your DSM account" , ProviderMessageType . Warning ) ;
protected IEnumerable < DownloadStationTask > GetTasks ( )
protected IEnumerable < DownloadStationTask > GetTasks ( )
{
{
return _dsTaskProxy . GetTasks ( Settings ) . Where ( v = > v . Type . ToLower ( ) = = DownloadStationTaskType . NZB . ToString ( ) . ToLower ( ) ) ;
return _dsTaskProxy . GetTasks ( Settings ) . Where ( v = > v . Type . ToLower ( ) = = DownloadStationTaskType . NZB . ToString ( ) . ToLower ( ) ) ;