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

Fixed: /var/lib/docker no longer shows up in DiskSpace. Caused warnings if the user used docker with zfs storage driver.

fixes 
pull/1667/head
Taloth Saldono 8 years ago
parent 0255eb3aca
commit 657730f4d2

@ -111,6 +111,12 @@ namespace NzbDrone.Mono.Disk
return null;
}
if (mount.StartsWith("/var/lib/"))
{
// Could be /var/lib/docker when docker uses zfs. Very unlikely that a useful mount is located in /var/lib.
return null;
}
var driveType = FindDriveType.Find(type);
if (name.StartsWith("/dev/") || GetFileSystems().GetValueOrDefault(type, false))

Loading…
Cancel
Save