Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/79b3a22c9ab23d9b0282469e61f186a40e5ceb12
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
4 additions and
6 deletions
@ -90,8 +90,6 @@ namespace NzbDrone.Common
LogManager . Configuration . Reload ( ) ;
LogManager . ReconfigExistingLoggers ( ) ;
sw . Stop ( ) ;
Console . WriteLine ( "Reload: " + sw . Elapsed . TotalSeconds ) ;
}
}
}
@ -137,7 +137,7 @@ namespace NzbDrone.Core
}
catch ( Exception e )
{
Logger . Fatal ( e ) ;
Logger . Fatal Exception ( "An error has occurred while dedicating to host." , e ) ;
}
}
@ -43,7 +43,7 @@ namespace NzbDrone.Update
}
catch ( Exception e )
{
logger . Fatal ( "An error has occurred while applying updat e.", e ) ;
logger . Fatal Exception ( "An error has occurred while applying updat e packag e.", e ) ;
}
}
@ -78,7 +78,7 @@ namespace NzbDrone.Update.Providers
catch ( Exception e )
{
RollBack ( targetFolder ) ;
logger . Fatal ( "Failed to copy upgrade package to target folder." , e ) ;
logger . Fatal Exception ( "Failed to copy upgrade package to target folder." , e ) ;
}
finally
{
@ -117,7 +117,7 @@ namespace NzbDrone.Providers
} . Submit ( ) ;
}
Logger . Fatal ( "EPIC FAIL: {0}" , excepion ) ;
Logger . Fatal Exception ( "EPIC FAIL: {0}" , excepion ) ;
}
}
}