Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/f8d97cac7dd5c5fb67d48e276da2bbaa261d5a8b You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: FileBrowser not displaying drive letters on Windows.

fixes 
pull/4/head
Taloth Saldono 9 years ago
parent f2ecbe776b
commit f8d97cac7d

@ -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);

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

Loading…
Cancel
Save