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

Fixed regression, mono should resolve symlinks while trying to find out the available/total space.

pull/6/head
Taloth Saldono 9 years ago
parent 5550565d6a
commit d33efe59fc

@ -22,6 +22,13 @@ namespace NzbDrone.Mono
_procMountProvider = procMountProvider;
}
public override IMount GetMount(string path)
{
path = UnixPath.GetCompleteRealPath(path);
return base.GetMount(path);
}
public override long? GetAvailableSpace(string path)
{
Ensure.That(path, () => path).IsValidPath();

Loading…
Cancel
Save