mirror of
https://github.com/Radarr/Radarr
synced 2026-01-19 14:02:40 +01:00
Fixed: Import not working due to Language constraint
This commit is contained in:
parent
9350f6a04c
commit
722a996ad3
2 changed files with 2 additions and 0 deletions
|
|
@ -82,6 +82,7 @@ public List<ImportResult> Import(List<ImportDecision> decisions, bool newDownloa
|
|||
movieFile.Path = localMovie.Path.CleanFilePath();
|
||||
movieFile.Size = _diskProvider.GetFileSize(localMovie.Path);
|
||||
movieFile.Quality = localMovie.Quality;
|
||||
movieFile.Languages = localMovie.Languages;
|
||||
movieFile.MediaInfo = localMovie.MediaInfo;
|
||||
movieFile.Movie = localMovie.Movie;
|
||||
movieFile.ReleaseGroup = localMovie.ParsedMovieInfo?.ReleaseGroup;
|
||||
|
|
|
|||
|
|
@ -186,6 +186,7 @@ public LocalMovie GetLocalMovie(string filename, ParsedMovieInfo minimalInfo, Mo
|
|||
{
|
||||
Movie = movie,
|
||||
Quality = enhanced.Quality,
|
||||
Languages = enhanced.Languages,
|
||||
Path = filename,
|
||||
ParsedMovieInfo = enhanced,
|
||||
ExistingFile = movie.Path.IsParentPath(filename),
|
||||
|
|
|
|||
Loading…
Reference in a new issue