mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
Warn if unable to get new nzoid from SAB
This commit is contained in:
parent
8ae354a56b
commit
1464a5d391
@ -2,6 +2,7 @@
|
||||
using System.IO;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading;
|
||||
using FluentValidation.Results;
|
||||
using NLog;
|
||||
using NzbDrone.Common;
|
||||
@ -239,14 +240,13 @@ public override String RetryDownload(String id)
|
||||
|
||||
if (history.Count() != 1)
|
||||
{
|
||||
_logger.Debug("History item missing. Couldn't get the new nzoid.");
|
||||
_logger.Warn("History item missing. Couldn't get the new nzoid.");
|
||||
return id;
|
||||
}
|
||||
|
||||
var queue = new List<DownloadClientItem>();
|
||||
for (int i = 0; i < 3; i++)
|
||||
{
|
||||
queue = GetQueue().Where(v => v.Category == history.First().Category && v.Title == history.First().Title).ToList();
|
||||
var queue = GetQueue().Where(v => v.Category == history.First().Category && v.Title == history.First().Title).ToList();
|
||||
|
||||
if (queue.Count() == 1)
|
||||
{
|
||||
@ -255,14 +255,14 @@ public override String RetryDownload(String id)
|
||||
|
||||
if (queue.Count() > 2)
|
||||
{
|
||||
_logger.Debug("Multiple items with the correct title. Couldn't get the new nzoid.");
|
||||
_logger.Warn("Multiple items with the correct title. Couldn't get the new nzoid.");
|
||||
return id;
|
||||
}
|
||||
|
||||
System.Threading.Thread.Sleep(500);
|
||||
Thread.Sleep(500);
|
||||
}
|
||||
|
||||
_logger.Debug("No items with the correct title. Couldn't get the new nzoid.");
|
||||
_logger.Warn("No items with the correct title. Couldn't get the new nzoid.");
|
||||
return id;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user