Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/b5de21552cff071300b9b60812c59d5bc9713ad7
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
11 additions and
5 deletions
@ -114,9 +114,11 @@ namespace NzbDrone.Web.UI.Automation
foreach ( var process in Process . GetProcesses ( ) )
{
if ( string . Equals ( process . ProcessName , "NzbDrone" , StringComparison . InvariantCultureIgnoreCase )
| | string . Equals ( process . ProcessName , "IISExpress" , StringComparison . InvariantCultureIgnoreCase ) )
| | string . Equals ( process . ProcessName , "IISExpress" , StringComparison . InvariantCultureIgnoreCase ) )
{
process . Kill ( ) ;
process . WaitForExit ( ) ;
process . WaitForExit ( ) ;
}
}
try
@ -128,10 +130,13 @@ namespace NzbDrone.Web.UI.Automation
foreach ( var process in Process . GetProcesses ( ) )
{
if ( string . Equals ( process . ProcessName , "NzbDrone" , StringComparison . InvariantCultureIgnoreCase )
| | string . Equals ( process . ProcessName , "IISExpress" , StringComparison . InvariantCultureIgnoreCase )
| | string . Equals ( process . ProcessName , "ServiceUninstall" , StringComparison . InvariantCultureIgnoreCase ) )
| | string . Equals ( process . ProcessName , "IISExpress" , StringComparison . InvariantCultureIgnoreCase )
| |
string . Equals ( process . ProcessName , "ServiceUninstall" , StringComparison . InvariantCultureIgnoreCase ) )
{
process . Kill ( ) ;
process . WaitForExit ( ) ;
process . WaitForExit ( ) ;
}
}
}
@ -30,6 +30,7 @@
<DefineConstants > TRACE</DefineConstants>
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
<PlatformTarget > x86</PlatformTarget>
</PropertyGroup>
<ItemGroup >
<Reference Include= "FluentAssertions" >