mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-20 18:02:44 +01:00
Avoid import loop for already imported movies
(cherry picked from commit b183743d9f0a0b15e4a9db0a9d3d2d1c238b0d9c) Closes #9325
This commit is contained in:
parent
9ffa1cc2b9
commit
20ac0bb0e1
@ -115,7 +115,7 @@ public void should_reject_if_episode_imported_after_being_grabbed()
|
|||||||
|
|
||||||
GivenHistory(history);
|
GivenHistory(history);
|
||||||
|
|
||||||
Subject.IsSatisfiedBy(_localMovie, _downloadClientItem).Accepted.Should().BeTrue();
|
Subject.IsSatisfiedBy(_localMovie, _downloadClientItem).Accepted.Should().BeFalse();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -67,6 +67,11 @@ public Decision IsSatisfiedBy(LocalMovie localMovie, DownloadClientItem download
|
|||||||
return Decision.Reject("Movie file already imported at {0}", lastImported.Date.ToLocalTime());
|
return Decision.Reject("Movie file already imported at {0}", lastImported.Date.ToLocalTime());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_logger.Debug("Movie file previously imported at {0}", lastImported.Date);
|
||||||
|
return Decision.Reject("Movie file already imported at {0}", lastImported.Date.ToLocalTime());
|
||||||
|
}
|
||||||
|
|
||||||
return Decision.Accept();
|
return Decision.Accept();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user