Fixed: Don't use sub folder to check for free disk space for update

Closes #6478
This commit is contained in:
Mark McDowall 2024-02-06 16:47:20 -08:00 committed by Mark McDowall
parent cac97c057f
commit f722d49b3a
1 changed files with 3 additions and 2 deletions

View File

@ -105,11 +105,12 @@ namespace NzbDrone.Core.Update
return false;
}
var tempFolder = _appFolderInfo.TempFolder;
var updateSandboxFolder = _appFolderInfo.GetUpdateSandboxFolder();
if (_diskProvider.GetTotalSize(updateSandboxFolder) < 1.Gigabytes())
if (_diskProvider.GetTotalSize(tempFolder) < 1.Gigabytes())
{
_logger.Warn("Temporary location '{0}' has less than 1 GB free space, Sonarr may not be able to update itself.", updateSandboxFolder);
_logger.Warn("Temporary location '{0}' has less than 1 GB free space, Sonarr may not be able to update itself.", tempFolder);
}
var packageDestination = Path.Combine(updateSandboxFolder, updatePackage.FileName);