mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-12 11:15:43 +02:00
Fixed: Don't use sub folder to check for free disk space for update
Closes #6478
This commit is contained in:
parent
cac97c057f
commit
f722d49b3a
@ -105,11 +105,12 @@ private bool InstallUpdate(UpdatePackage updatePackage)
|
||||
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);
|
||||
|
Loading…
Reference in New Issue
Block a user