Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/399c96c5e34f71dbc476c2c6322a8770c8b8f49a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -195,19 +195,19 @@ namespace NzbDrone.Common
private void RegisterUrl ( int portNumber )
{
var arguments = String . Format ( "http add urlacl http:// + :{0}/ user=EVERYONE", portNumber ) ;
var arguments = String . Format ( "http add urlacl http:// * :{0}/ user=EVERYONE", portNumber ) ;
RunNetsh ( arguments ) ;
}
private void UnregisterUrl ( int portNumber )
{
var arguments = String . Format ( "http delete urlacl http:// + :{0}/", portNumber ) ;
var arguments = String . Format ( "http delete urlacl http:// * :{0}/", portNumber ) ;
RunNetsh ( arguments ) ;
}
private bool CheckIfUrlIsRegisteredUrl ( int portNumber )
{
var url = String . Format ( "http:// + :{0}/", portNumber ) ;
var url = String . Format ( "http:// * :{0}/", portNumber ) ;
var arguments = String . Format ( "http show urlacl url=\"{0}\"" , url ) ;
var output = RunNetsh ( arguments ) ;