1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Fixed "wrong" quality being detected. Scan will be slower though.

This commit is contained in:
Leonardo Galli 2017-03-04 17:50:02 +01:00 committed by GitHub
parent 98e2bd00ab
commit 46daa11c46

View File

@ -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)
}
}
}
}
}