1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Fixed transmission returning -1 as Eta.

This commit is contained in:
Taloth Saldono 2015-05-29 20:47:55 +02:00
parent 5fda64de66
commit aa78807ee2

View File

@ -115,9 +115,13 @@ public override IEnumerable<DownloadClientItem> GetItems()
item.DownloadClient = Definition.Name; item.DownloadClient = Definition.Name;
item.OutputPath = outputPath + torrent.Name; item.OutputPath = outputPath + torrent.Name;
item.TotalSize = torrent.TotalSize;
item.RemainingSize = torrent.LeftUntilDone; item.RemainingSize = torrent.LeftUntilDone;
item.RemainingTime = TimeSpan.FromSeconds(torrent.Eta); item.RemainingTime = TimeSpan.FromSeconds(torrent.Eta);
item.TotalSize = torrent.TotalSize; if (torrent.Eta != -1)
{
item.RemainingTime = TimeSpan.FromSeconds(torrent.Eta);
}
if (!torrent.ErrorString.IsNullOrWhiteSpace()) if (!torrent.ErrorString.IsNullOrWhiteSpace())
{ {