fixes #1535
@ -113,7 +113,7 @@ namespace NzbDrone.Common.Disk
.Select(d => new FileSystemModel
{
Type = FileSystemEntityType.Drive,
Name = d.VolumeLabel,
Name = d.VolumeName,
Path = d.RootDirectory,
LastModified = null
})
@ -13,5 +13,6 @@ namespace NzbDrone.Common.Disk
long TotalFreeSpace { get; }
long TotalSize { get; }
string VolumeLabel { get; }
string VolumeName { get; }
}