mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-19 13:10:13 -07:00
Fixed transmission returning -1 as Eta.
This commit is contained in:
parent
aa78807ee2
commit
1cc6ad0d5f
1 changed files with 0 additions and 1 deletions
|
@ -117,7 +117,6 @@ namespace NzbDrone.Core.Download.Clients.Transmission
|
||||||
item.OutputPath = outputPath + torrent.Name;
|
item.OutputPath = outputPath + torrent.Name;
|
||||||
item.TotalSize = torrent.TotalSize;
|
item.TotalSize = torrent.TotalSize;
|
||||||
item.RemainingSize = torrent.LeftUntilDone;
|
item.RemainingSize = torrent.LeftUntilDone;
|
||||||
item.RemainingTime = TimeSpan.FromSeconds(torrent.Eta);
|
|
||||||
if (torrent.Eta != -1)
|
if (torrent.Eta != -1)
|
||||||
{
|
{
|
||||||
item.RemainingTime = TimeSpan.FromSeconds(torrent.Eta);
|
item.RemainingTime = TimeSpan.FromSeconds(torrent.Eta);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue