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

Fixed: Don't try to clean Update Folder if it doesn't exist

[common]
pull/1877/head
Qstick 4 years ago
parent 99a7540fe4
commit 24f96fa2a4

@ -1,4 +1,4 @@
using NzbDrone.Common.Disk;
using NzbDrone.Common.Disk;
using NzbDrone.Common.EnvironmentInfo;
using NzbDrone.Common.Extensions;
@ -19,7 +19,10 @@ namespace NzbDrone.Core.Housekeeping.Housekeepers
{
var updateSandboxFolder = _appFolderInfo.GetUpdateSandboxFolder();
_diskProvider.DeleteFolder(updateSandboxFolder, true);
if (_diskProvider.FolderExists(updateSandboxFolder))
{
_diskProvider.DeleteFolder(updateSandboxFolder, true);
}
}
}
}

Loading…
Cancel
Save