Do not try to optimize when there are too few files, it seems to bring more drawbacks than benefits

This commit is contained in:
emeric
2025-07-18 19:29:08 +02:00
parent f64a93b5b6
commit f51ceb933e
20 changed files with 116 additions and 52 deletions
@@ -266,7 +266,7 @@ namespace lms::scanner
bool ScanStepAssociateReleaseImages::needProcess(const ScanContext& context) const
{
return context.stats.nbChanges() > 0;
return context.stats.getChangesCount() > 0;
}
void ScanStepAssociateReleaseImages::process(ScanContext& context)