Fixed transmission returning -1 as Eta.

pull/3113/head
Taloth Saldono 9 years ago
parent aa78807ee2
commit 1cc6ad0d5f

@ -117,7 +117,6 @@ namespace NzbDrone.Core.Download.Clients.Transmission
item.OutputPath = outputPath + torrent.Name;
item.TotalSize = torrent.TotalSize;
item.RemainingSize = torrent.LeftUntilDone;
item.RemainingTime = TimeSpan.FromSeconds(torrent.Eta);
if (torrent.Eta != -1)
{
item.RemainingTime = TimeSpan.FromSeconds(torrent.Eta);

Loading…
Cancel
Save