mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
Fix for wrong qualities showing up. Will be slower to load though.
This commit is contained in:
parent
0f2234bcdc
commit
98e2bd00ab
1 changed files with 2 additions and 2 deletions
|
@ -112,7 +112,7 @@ namespace NzbDrone.Api.Movie
|
|||
|
||||
var files = _diskScanService.GetVideoFiles(f.Path);
|
||||
|
||||
var decisions = _importDecisionMaker.GetImportDecisions(files.ToList(), m);
|
||||
var decisions = _importDecisionMaker.GetImportDecisions(files.ToList(), m, true, true);
|
||||
|
||||
var decision = decisions.Where(d => d.Approved && !d.Rejections.Any()).FirstOrDefault();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue