Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/ab7d3ebcc562b7c6ec97a316a847544a37eb69ad
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
31 additions and
10 deletions
@ -37,17 +37,22 @@ namespace NzbDrone.Common
return ;
}
if ( IsNzbDronePortOpen ( ) )
int port = 0 ;
if ( IsFirewallEnabled ( ) )
{
Logger . Trace ( "NzbDrone port is already open, skipping." ) ;
return ;
}
if ( IsNzbDronePortOpen ( ) )
{
Logger . Trace ( "NzbDrone port is already open, skipping." ) ;
return ;
}
//Close any old ports
var port = CloseFirewallPort ( ) ;
//Close any old ports
port = CloseFirewallPort ( ) ;
//Open the new port
OpenFirewallPort ( _configFileProvider . Port ) ;
//Open the new port
OpenFirewallPort ( _configFileProvider . Port ) ;
}
//Skip Url Register if not Vista or 7
if ( _enviromentProvider . GetOsVersion ( ) . Major < 6 )
@ -123,7 +128,7 @@ namespace NzbDrone.Common
}
catch ( Exception ex )
{
Logger . WarnException ( "Failed to open port in firewall for NzbDrone " + portNumber , ex ) ;
Logger . WarnException ( "Failed to open port in firewall for NzbDrone " + portNumber , ex ) ;
return false ;
}
}
@ -161,6 +166,22 @@ namespace NzbDrone.Common
return 0 ;
}
private bool IsFirewallEnabled ( )
{
try
{
var netFwMgrType = Type . GetTypeFromProgID ( "HNetCfg.FwMgr" , false ) ;
var mgr = ( INetFwMgr ) Activator . CreateInstance ( netFwMgrType ) ;
return mgr . LocalPolicy . CurrentProfile . FirewallEnabled ;
}
catch ( Exception ex )
{
Logger . WarnException ( "Failed to check if the firewall is enabled" , ex ) ;
return false ;
}
}
private bool RegisterUrl ( int portNumber )
{
try
@ -45,7 +45,7 @@ namespace NzbDrone.Web.Models
public bool Monitored { get ; set ; }
[DisplayName("Backlog Setting")]
[Description("Should NzbDrone download past missing episode s?")]
[Description("Should NzbDrone search for missing episodes every 30 day s?")]
public int BacklogSetting { get ; set ; }
}
}