Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/cdb595a3cddcdf9e0a1b4e7a3f83fceae48cf87b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
24 additions and
24 deletions
@ -71,30 +71,30 @@ namespace NzbDrone.Update
ProcessId = ParseProcessId ( args [ 0 ] )
} ;
if ( args . Count ( ) = = 1 )
{
return startupContext ;
}
else if ( args . Count ( ) = = 3 )
{
startupContext . UpdateLocation = args [ 1 ] ;
startupContext . ExecutingApplication = args [ 2 ] ;
}
else
{
logger . Debug ( "Arguments:" ) ;
foreach ( var arg in args )
{
logger . Debug ( " {0}" , arg ) ;
}
var message = String . Format ( "Number of arguments are unexpected, expected: 3, found: {0}" , args . Count ( ) ) ;
throw new ArgumentOutOfRangeException ( "args" , message ) ;
}
// if (args.Count() == 1)
// {
// return startupContext;
// }
/ /
// else if (args.Count() == 3)
// {
// startupContext.UpdateLocation = args[1];
// startupContext.ExecutingApplication = args[2];
// }
/ /
// else
// {
// logger.Debug("Arguments:");
/ /
// foreach (var arg in args)
// {
// logger.Debug(" {0}", arg);
// }
/ /
// var message = String.Format("Number of arguments are unexpected, expected: 3, found: {0}", args.Count());
/ /
// throw new ArgumentOutOfRangeException("args", message);
// }
return startupContext ;
}