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

Fixed: Getting free space for inaccessible drive won't log an error

pull/124/head
Mark McDowall 11 years ago
parent 485fa6a13d
commit a433aac034

@ -24,7 +24,7 @@ namespace NzbDrone.Mono
try
{
var driveInfo = GetDriveInfoLinux(path);
var driveInfo = GetDriveInfo(path);
if (driveInfo == null)
{
@ -122,7 +122,11 @@ namespace NzbDrone.Mono
try
{
return GetDriveInfoLinux(path).TotalSize;
var driveInfo = GetDriveInfo(path);
if (driveInfo == null) return null;
return driveInfo.TotalSize;
}
catch (InvalidOperationException e)
{
@ -132,7 +136,7 @@ namespace NzbDrone.Mono
return null;
}
private DriveInfo GetDriveInfoLinux(string path)
private DriveInfo GetDriveInfo(string path)
{
var drives = DriveInfo.GetDrives();

Loading…
Cancel
Save