hotfix continue, not break - add slight delay - log params

This commit is contained in:
iPromKnight
2024-03-03 04:10:14 +00:00
parent cd05013f2b
commit 4b3bb2b5bd
2 changed files with 7 additions and 1 deletions

View File

@@ -44,7 +44,8 @@ public partial class TorrentioCrawler(
if (items.Count == 0)
{
logger.LogInformation("No items to process for {TorrentioInstance}", instance.Name);
break;
await Task.Delay(10000);
continue;
}
var newTorrents = new List<Torrent>();