mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 17:57:43 +00:00
Fixed: Don't check for missing TheXEM numbering when importing existing series.
This commit is contained in:
parent
8090c853ba
commit
648a16c1bb
1 changed files with 6 additions and 0 deletions
|
@ -15,6 +15,12 @@ namespace NzbDrone.Core.MediaFiles.EpisodeImport.Specifications
|
|||
|
||||
public Decision IsSatisfiedBy(LocalEpisode localEpisode)
|
||||
{
|
||||
if (localEpisode.ExistingFile)
|
||||
{
|
||||
_logger.Debug("Skipping scene numbering check for existing episode");
|
||||
Decision.Accept();
|
||||
}
|
||||
|
||||
if (localEpisode.Episodes.Any(v => v.UnverifiedSceneNumbering))
|
||||
{
|
||||
_logger.Debug("This file uses unverified scene numbers, will not auto-import until numbering is confirmed on TheXEM. Skipping {0}", localEpisode.Path);
|
||||
|
|
Loading…
Reference in a new issue