Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/54e587477066aea43652eb34ef5d9660eaca0091 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Update client is now moved rather than copied.

pull/4/head
kay.one 14 years ago
parent 03fb405c2e
commit 54e5874770

@ -97,7 +97,7 @@ namespace NzbDrone.Core.Test.JobTests
//Assert
Mocker.GetMock<DiskProvider>().Verify(
c => c.CopyDirectory(updateClientFolder, SANDBOX_FOLDER));
c => c.MoveDirectory(updateClientFolder, SANDBOX_FOLDER));
}
[Test]

@ -68,7 +68,7 @@ namespace NzbDrone.Core.Providers.Jobs
logger.Info("Preparing client");
notification.CurrentMessage = "Preparing to start Update";
_diskProvider.CopyDirectory(_enviromentProvider.GetUpdateClientFolder(), _enviromentProvider.GetUpdateSandboxFolder());
_diskProvider.MoveDirectory(_enviromentProvider.GetUpdateClientFolder(), _enviromentProvider.GetUpdateSandboxFolder());
logger.Info("Starting update client");

Loading…
Cancel
Save