1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-17 21:26:22 -04:00

Fix subtitle aggregation for not populated movie (#10406)

This commit is contained in:
Jendrik Weise
2024-09-06 15:28:42 +02:00
committed by GitHub
parent e688dfadf7
commit b6b7d30fc1
2 changed files with 3 additions and 1 deletions

View File

@@ -25,7 +25,7 @@ namespace NzbDrone.Core.MediaFiles.MovieImport.Aggregation.Aggregators
var path = localMovie.Path;
var isSubtitleFile = SubtitleFileExtensions.Extensions.Contains(Path.GetExtension(path));
if (!isSubtitleFile)
if (!isSubtitleFile || localMovie.Movie == null)
{
return localMovie;
}

View File

@@ -151,6 +151,8 @@ namespace NzbDrone.Core.MediaFiles.MovieImport
movieFile = _mediaFileService.Add(movieFile);
importResults.Add(new ImportResult(importDecision));
localMovie.Movie.MovieFile = movieFile;
if (newDownload)
{
if (localMovie.ScriptImported)