1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-03-05 13:20:20 -05:00

Return maximum long value on overflow getting disk information

Closes #8130
This commit is contained in:
Mark McDowall
2025-10-22 19:28:30 -07:00
parent dacd469627
commit b803635b6c

View File

@@ -1,12 +1,16 @@
using System.IO;
using System;
using System.IO;
using Mono.Unix;
using NLog;
using NzbDrone.Common.Disk;
using NzbDrone.Common.Extensions;
using NzbDrone.Common.Instrumentation;
namespace NzbDrone.Mono.Disk
{
public class ProcMount : IMount
{
private static readonly Logger Logger = NzbDroneLogger.GetLogger(typeof(ProcMount));
private readonly UnixDriveInfo _unixDriveInfo;
public ProcMount(DriveType driveType, string name, string mount, string type, MountOptions mountOptions)
@@ -34,9 +38,37 @@ namespace NzbDrone.Mono.Disk
public string RootDirectory { get; private set; }
public long TotalFreeSpace => _unixDriveInfo.TotalFreeSpace;
public long TotalFreeSpace
{
get
{
try
{
return _unixDriveInfo.TotalFreeSpace;
}
catch (OverflowException ex)
{
Logger.Warn(ex, "Failed to get total free space");
return long.MaxValue;
}
}
}
public long TotalSize => _unixDriveInfo.TotalSize;
public long TotalSize
{
get
{
try
{
return _unixDriveInfo.TotalSize;
}
catch (OverflowException ex)
{
Logger.Warn(ex, "Failed to get total size");
return long.MaxValue;
}
}
}
public string VolumeLabel => _unixDriveInfo.VolumeLabel;