diff --git a/server/RdtClient.Service/Services/TorrentClients/RealDebridTorrentClient.cs b/server/RdtClient.Service/Services/TorrentClients/RealDebridTorrentClient.cs index 0ce3d6d..29528c3 100644 --- a/server/RdtClient.Service/Services/TorrentClients/RealDebridTorrentClient.cs +++ b/server/RdtClient.Service/Services/TorrentClients/RealDebridTorrentClient.cs @@ -318,8 +318,6 @@ namespace RdtClient.Service.Services.TorrentClients // If there is only 1 link, delay for 1 minute to see if more links pop up. if (downloadLinks.Count == 1 && torrent.RdEnded.HasValue && DateTime.UtcNow > torrent.RdEnded.Value.ToUniversalTime().AddMinutes(1)) { - var rem = torrent.RdEnded.Value.ToUniversalTime() - DateTimeOffset.UtcNow; - Log($"Delaying {rem.TotalSeconds} more seconds", torrent); return downloadLinks; }