mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Fixed: Prevent getting disk space from returning no information when it partially fails
(cherry picked from commit 2c65e4fa41418157d0d27b34c3bab80158cff219)
This commit is contained in:
parent
cea0c5033a
commit
a78693a2f7
@ -168,13 +168,31 @@ public override void CopyPermissions(string sourcePath, string targetPath)
|
||||
|
||||
protected override List<IMount> GetAllMounts()
|
||||
{
|
||||
return _procMountProvider.GetMounts()
|
||||
.Concat(GetDriveInfoMounts()
|
||||
var mounts = new List<IMount>();
|
||||
|
||||
try
|
||||
{
|
||||
mounts.AddRange(_procMountProvider.GetMounts());
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
_logger.Warn(e, $"Unable to get mounts: {e.Message}");
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
mounts.AddRange(GetDriveInfoMounts()
|
||||
.Select(d => new DriveInfoMount(d, FindDriveType.Find(d.DriveFormat)))
|
||||
.Where(d => d.DriveType == DriveType.Fixed ||
|
||||
d.DriveType == DriveType.Network ||
|
||||
d.DriveType == DriveType.Removable))
|
||||
.DistinctBy(v => v.RootDirectory)
|
||||
d.DriveType == DriveType.Removable));
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
_logger.Warn(e, $"Unable to get drive mounts: {e.Message}");
|
||||
}
|
||||
|
||||
return mounts.DistinctBy(v => v.RootDirectory)
|
||||
.ToList();
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user