mirror of
https://github.com/Radarr/Radarr
synced 2025-01-01 12:54:21 +00:00
Fixed "wrong" quality being detected. Scan will be slower though.
This commit is contained in:
parent
98e2bd00ab
commit
46daa11c46
1 changed files with 2 additions and 2 deletions
|
@ -178,7 +178,7 @@ public void Scan(Movie movie)
|
|||
_mediaFileTableCleanupService.Clean(movie, mediaFileList);
|
||||
|
||||
var decisionsStopwatch = Stopwatch.StartNew();
|
||||
var decisions = _importDecisionMaker.GetImportDecisions(mediaFileList, movie, true);
|
||||
var decisions = _importDecisionMaker.GetImportDecisions(mediaFileList, movie, true, true);
|
||||
decisionsStopwatch.Stop();
|
||||
_logger.Trace("Import decisions complete for: {0} [{1}]", movie, decisionsStopwatch.Elapsed);
|
||||
|
||||
|
@ -299,4 +299,4 @@ public void Execute(RescanSeriesCommand message)
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue