mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-28 04:51:45 +02:00
Fixed: FileBrowser not displaying drive letters on Windows.
fixes #1535
This commit is contained in:
@@ -113,7 +113,7 @@ namespace NzbDrone.Common.Disk
|
|||||||
.Select(d => new FileSystemModel
|
.Select(d => new FileSystemModel
|
||||||
{
|
{
|
||||||
Type = FileSystemEntityType.Drive,
|
Type = FileSystemEntityType.Drive,
|
||||||
Name = d.VolumeLabel,
|
Name = d.VolumeName,
|
||||||
Path = d.RootDirectory,
|
Path = d.RootDirectory,
|
||||||
LastModified = null
|
LastModified = null
|
||||||
})
|
})
|
||||||
|
@@ -13,5 +13,6 @@ namespace NzbDrone.Common.Disk
|
|||||||
long TotalFreeSpace { get; }
|
long TotalFreeSpace { get; }
|
||||||
long TotalSize { get; }
|
long TotalSize { get; }
|
||||||
string VolumeLabel { get; }
|
string VolumeLabel { get; }
|
||||||
|
string VolumeName { get; }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user