Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/004335f0b0c1f0033aae52083e0d099f005741d5
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
12 additions and
6 deletions
@ -17,13 +17,19 @@ namespace NzbDrone.Common.EnvironmentInfo
{
private readonly IDiskProvider _diskProvider ;
private readonly Logger _logger ;
private const Environment . SpecialFolder DATA_SPECIAL_FOLDER = Environment . SpecialFolder . CommonApplicationData ;
private readonly Environment . SpecialFolder DATA_SPECIAL_FOLDER = Environment . SpecialFolder . CommonApplicationData ;
public AppFolderInfo ( IDiskProvider diskProvider )
{
_diskProvider = diskProvider ;
_logger = LogManager . GetCurrentClassLogger ( ) ;
public AppFolderInfo ( IDiskProvider diskProvider )
{
_diskProvider = diskProvider ;
if ( OsInfo . IsLinux )
{
DATA_SPECIAL_FOLDER = Environment . SpecialFolder . ApplicationData ;
}
_logger = LogManager . GetCurrentClassLogger ( ) ;
AppDataFolder = Path . Combine ( Environment . GetFolderPath ( DATA_SPECIAL_FOLDER , Environment . SpecialFolderOption . DoNotVerify ) , "NzbDrone" ) ;
StartUpFolder = new FileInfo ( Assembly . GetExecutingAssembly ( ) . Location ) . Directory . FullName ;
@ -36,7 +36,7 @@ namespace NzbDrone
public void Route ( ApplicationModes applicationModes )
{
if ( ! _runtimeInfo . IsUserInteractive )
if ( ! _runtimeInfo . IsUserInteractive & & ! OsInfo . IsLinux )
{
applicationModes = ApplicationModes . Service ;
}