Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/da27db7e0321300518fc11a4181c3eaa8673f0ed
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -68,7 +68,7 @@ namespace NzbDrone
Process currentProcess = Process . GetCurrentProcess ( ) ;
if ( currentProcess . PriorityClass < ProcessPriorityClass . Normal )
{
Logger . Info ( "Promoting process priority from {0} to {1}", currentProcess . PriorityClass ,
Logger . Info ( "Promoting Nzbdrone.exe process priority from {0} to {1}", currentProcess . PriorityClass ,
ProcessPriorityClass . Normal ) ;
currentProcess . PriorityClass = ProcessPriorityClass . Normal ;
}
@ -76,7 +76,7 @@ namespace NzbDrone
if ( IISController . IISProcess ! = null & & IISController . IISProcess . PriorityClass < ProcessPriorityClass . Normal )
{
Logger . Info ( "Promoting process priority from {0} to {1}", IISController . IISProcess . PriorityClass ,
Logger . Info ( "Promoting IISExpress process priority from {0} to {1}", IISController . IISProcess . PriorityClass ,
ProcessPriorityClass . Normal ) ;
IISController . IISProcess . PriorityClass = ProcessPriorityClass . Normal ;
}