1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-11 06:33:16 +00: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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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)