1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2024-12-26 01:27:00 +00:00

Fixed negative NzbGet DownloadLimit

Fixes #700
This commit is contained in:
Taloth Saldono 2015-08-11 21:52:26 +02:00
parent 5ea954695e
commit 408991e03c

View file

@ -4,13 +4,13 @@ namespace NzbDrone.Core.Download.Clients.Nzbget
{ {
public class NzbgetGlobalStatus public class NzbgetGlobalStatus
{ {
public UInt32 RemainingSizeLo { get; set; } public uint RemainingSizeLo { get; set; }
public UInt32 RemainingSizeHi { get; set; } public uint RemainingSizeHi { get; set; }
public UInt32 DownloadedSizeLo { get; set; } public uint DownloadedSizeLo { get; set; }
public UInt32 DownloadedSizeHi { get; set; } public uint DownloadedSizeHi { get; set; }
public UInt32 DownloadRate { get; set; } public int DownloadRate { get; set; }
public UInt32 AverageDownloadRate { get; set; } public int AverageDownloadRate { get; set; }
public UInt32 DownloadLimit { get; set; } public int DownloadLimit { get; set; }
public Boolean DownloadPaused { get; set; } public bool DownloadPaused { get; set; }
} }
} }