Fix for wrong qualities showing up. Will be slower to load though.

This commit is contained in:
Leonardo Galli 2017-03-04 17:48:26 +01:00 committed by GitHub
parent 0f2234bcdc
commit 98e2bd00ab
1 changed files with 2 additions and 2 deletions

View File

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