mirror of
https://github.com/Radarr/Radarr
synced 2025-12-27 10:45:44 +01:00
Fixed: MediaInfo not getting read when quality isn't Bluray, Web-dl or HDTV. Fixes #1465. Fixes #1572.
This commit is contained in:
parent
a951ad811d
commit
a98494ab63
1 changed files with 2 additions and 1 deletions
|
|
@ -136,10 +136,11 @@ private ImportDecision GetDecision(string file, Movie movie, ParsedMovieInfo fol
|
|||
|
||||
_logger.Debug("Size: {0}", localMovie.Size);
|
||||
var current = localMovie.Quality;
|
||||
localMovie.MediaInfo = _videoFileInfoReader.GetMediaInfo(file);
|
||||
//TODO: make it so media info doesn't ruin the import process of a new series
|
||||
if (sceneSource && ShouldCheckQualityForParsedQuality(current.Quality))
|
||||
{
|
||||
localMovie.MediaInfo = _videoFileInfoReader.GetMediaInfo(file);
|
||||
|
||||
if (shouldCheckQuality)
|
||||
{
|
||||
_logger.Debug("Checking quality for this video file to make sure nothing mismatched.");
|
||||
|
|
|
|||
Loading…
Reference in a new issue