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

Don't list drives that aren't available.

pull/6/head
Taloth Saldono 10 years ago
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…
Cancel
Save