Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/1cc6ad0d5f3e9445f8a7c85d9ff029cf112b33c3 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed transmission returning -1 as Eta.

pull/4/head
Taloth Saldono 10 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