mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-17 21:26:22 -04:00
Fix for wrong qualities showing up. Will be slower to load though.
This commit is contained in:
@@ -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();
|
||||
|
||||
@@ -172,4 +172,4 @@ namespace NzbDrone.Api.Movie
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user