From 408991e03cf685d70d41c36ea388992ac4a72cde Mon Sep 17 00:00:00 2001 From: Taloth Saldono Date: Tue, 11 Aug 2015 21:52:26 +0200 Subject: [PATCH] Fixed negative NzbGet DownloadLimit Fixes #700 --- .../Clients/Nzbget/NzbgetGlobalStatus.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/NzbDrone.Core/Download/Clients/Nzbget/NzbgetGlobalStatus.cs b/src/NzbDrone.Core/Download/Clients/Nzbget/NzbgetGlobalStatus.cs index d34dcfa2f..03a731859 100644 --- a/src/NzbDrone.Core/Download/Clients/Nzbget/NzbgetGlobalStatus.cs +++ b/src/NzbDrone.Core/Download/Clients/Nzbget/NzbgetGlobalStatus.cs @@ -4,13 +4,13 @@ namespace NzbDrone.Core.Download.Clients.Nzbget { public class NzbgetGlobalStatus { - public UInt32 RemainingSizeLo { get; set; } - public UInt32 RemainingSizeHi { get; set; } - public UInt32 DownloadedSizeLo { get; set; } - public UInt32 DownloadedSizeHi { get; set; } - public UInt32 DownloadRate { get; set; } - public UInt32 AverageDownloadRate { get; set; } - public UInt32 DownloadLimit { get; set; } - public Boolean DownloadPaused { get; set; } + public uint RemainingSizeLo { get; set; } + public uint RemainingSizeHi { get; set; } + public uint DownloadedSizeLo { get; set; } + public uint DownloadedSizeHi { get; set; } + public int DownloadRate { get; set; } + public int AverageDownloadRate { get; set; } + public int DownloadLimit { get; set; } + public bool DownloadPaused { get; set; } } }