mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-24 22:35:49 -04:00
Additional logging when trying to complete tracked downloads
Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
+2
@@ -44,12 +44,14 @@ namespace NzbDrone.Core.MediaFiles.MovieImport.Specifications
|
||||
|
||||
if (lastImported == null)
|
||||
{
|
||||
_logger.Trace("Movie file has not been imported");
|
||||
return Decision.Accept();
|
||||
}
|
||||
|
||||
// If the release was grabbed again after importing don't reject it
|
||||
if (lastGrabbed != null && lastGrabbed.Date.After(lastImported.Date))
|
||||
{
|
||||
_logger.Trace("Movie file was grabbed again after importing");
|
||||
return Decision.Accept();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user