mirror of https://github.com/Radarr/Radarr
Don't list drives that aren't available.
This commit is contained in:
parent
ada5919136
commit
08ebc8d292
|
@ -380,6 +380,7 @@ namespace NzbDrone.Common.Disk
|
|||
{
|
||||
return DriveInfo.GetDrives()
|
||||
.Where(d => d.DriveType == DriveType.Fixed || d.DriveType == DriveType.Network)
|
||||
.Where(d => d.IsReady)
|
||||
.ToList();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue