Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/9b715ee078be299f6a949eab8404b79e24be8ca1
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
13 additions and
3 deletions
@ -1,4 +1,5 @@
using NLog ;
using System ;
using NLog ;
using NzbDrone.Common.Disk ;
using NzbDrone.Common.EnvironmentInfo ;
using NzbDrone.Common.Extensions ;
@ -29,8 +30,17 @@ namespace NzbDrone.Update.UpdateEngine
var backupFolderAppData = _appFolderInfo . GetUpdateBackUpAppDataFolder ( ) ;
_diskProvider . CreateFolder ( backupFolderAppData ) ;
_diskProvider . CopyFile ( _appFolderInfo . GetConfigPath ( ) , _appFolderInfo . GetUpdateBackupConfigFile ( ) , true ) ;
_diskProvider . CopyFile ( _appFolderInfo . GetNzbDroneDatabase ( ) , _appFolderInfo . GetUpdateBackupDatabase ( ) , true ) ;
try
{
_diskProvider . CopyFile ( _appFolderInfo . GetConfigPath ( ) , _appFolderInfo . GetUpdateBackupConfigFile ( ) , true ) ;
_diskProvider . CopyFile ( _appFolderInfo . GetNzbDroneDatabase ( ) , _appFolderInfo . GetUpdateBackupDatabase ( ) ,
true ) ;
}
catch ( Exception e )
{
_logger . ErrorException ( "Couldn't create a data backup" , e ) ;
}
}
}
}