Fixed: FileBrowser not displaying drive letters on Windows.

fixes #1535
This commit is contained in:
Taloth Saldono 2016-11-01 20:18:30 +01:00
parent f2ecbe776b
commit f8d97cac7d
2 changed files with 3 additions and 2 deletions

View File

@ -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
})
@ -163,7 +163,7 @@ namespace NzbDrone.Common.Disk
return path;
}
private string GetParent(string path)
{
var di = new DirectoryInfo(path);

View File

@ -13,5 +13,6 @@ namespace NzbDrone.Common.Disk
long TotalFreeSpace { get; }
long TotalSize { get; }
string VolumeLabel { get; }
string VolumeName { get; }
}
}