mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Fixed log message for rss sync gap warning.
This commit is contained in:
@@ -181,7 +181,7 @@ namespace NzbDrone.Core.Indexers
|
|||||||
if (!fullyUpdated && lastReleaseInfo != null)
|
if (!fullyUpdated && lastReleaseInfo != null)
|
||||||
{
|
{
|
||||||
var gapStart = lastReleaseInfo.PublishDate;
|
var gapStart = lastReleaseInfo.PublishDate;
|
||||||
var gapEnd = ordered.Last();
|
var gapEnd = ordered.Last().PublishDate;
|
||||||
_logger.Warn("Indexer {0} rss sync didn't cover the period between {1} and {2} UTC. Search may be required.", Definition.Name, gapStart, gapEnd);
|
_logger.Warn("Indexer {0} rss sync didn't cover the period between {1} and {2} UTC. Search may be required.", Definition.Name, gapStart, gapEnd);
|
||||||
}
|
}
|
||||||
lastReleaseInfo = ordered.First();
|
lastReleaseInfo = ordered.First();
|
||||||
|
Reference in New Issue
Block a user