Fixed regression, mono should resolve symlinks while trying to find out the available/total space.
This commit is contained in:
parent
5550565d6a
commit
d33efe59fc
|
@ -22,6 +22,13 @@ namespace NzbDrone.Mono
|
||||||
_procMountProvider = procMountProvider;
|
_procMountProvider = procMountProvider;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public override IMount GetMount(string path)
|
||||||
|
{
|
||||||
|
path = UnixPath.GetCompleteRealPath(path);
|
||||||
|
|
||||||
|
return base.GetMount(path);
|
||||||
|
}
|
||||||
|
|
||||||
public override long? GetAvailableSpace(string path)
|
public override long? GetAvailableSpace(string path)
|
||||||
{
|
{
|
||||||
Ensure.That(path, () => path).IsValidPath();
|
Ensure.That(path, () => path).IsValidPath();
|
||||||
|
|
Loading…
Reference in New Issue