mirror of
https://github.com/Radarr/Radarr
synced 2025-01-01 12:54:21 +00: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 @@ private Response Search()
|
|||
|
||||
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();
|
||||
|
||||
|
@ -172,4 +172,4 @@ private static IEnumerable<MovieResource> MapToResource(IEnumerable<Core.Tv.Movi
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue