Fixed: Ignore inaccessible mount points
This commit is contained in:
parent
7593d4e370
commit
60f18249b0
|
@ -190,10 +190,12 @@ namespace NzbDrone.Mono.Disk
|
||||||
}
|
}
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
throw new Exception($"Failed to fetch drive info for mount point: {d.Name}", ex);
|
_logger.Debug(ex, "Failed to fetch drive info for mount point: {0}", d.Name);
|
||||||
|
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.Where(d => d.DriveType is DriveType.Fixed or DriveType.Network or DriveType.Removable));
|
.Where(d => d is { DriveType: DriveType.Fixed or DriveType.Network or DriveType.Removable }));
|
||||||
}
|
}
|
||||||
catch (Exception e)
|
catch (Exception e)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue