mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
Fixed transmission returning -1 as Eta.
This commit is contained in:
parent
aa78807ee2
commit
1cc6ad0d5f
@ -117,7 +117,6 @@ public override IEnumerable<DownloadClientItem> GetItems()
|
||||
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…
Reference in New Issue
Block a user