From 8f73a51522ae922c055c5d2ac6e1c2fa8fb7f187 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 27 Oct 2016 17:57:18 -0700 Subject: [PATCH] Fixed: Handling of some really long qBittorrent ETAs --- .../Download/Clients/qBittorrent/QBittorrentTorrent.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Download/Clients/qBittorrent/QBittorrentTorrent.cs b/src/NzbDrone.Core/Download/Clients/qBittorrent/QBittorrentTorrent.cs index 2a982051d..ae4963e65 100644 --- a/src/NzbDrone.Core/Download/Clients/qBittorrent/QBittorrentTorrent.cs +++ b/src/NzbDrone.Core/Download/Clients/qBittorrent/QBittorrentTorrent.cs @@ -13,7 +13,7 @@ namespace NzbDrone.Core.Download.Clients.QBittorrent public double Progress { get; set; } // Torrent progress (%/100) - public int Eta { get; set; } // Torrent ETA (seconds) + public ulong Eta { get; set; } // Torrent ETA (seconds) public string State { get; set; } // Torrent state. See possible values here below