1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-20 01:42:35 +01: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 @@ public LocalMovie Aggregate(LocalMovie localMovie, DownloadClientItem downloadCl
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 @@ public List<ImportResult> Import(List<ImportDecision> decisions, bool newDownloa
movieFile = _mediaFileService.Add(movieFile);
importResults.Add(new ImportResult(importDecision));
localMovie.Movie.MovieFile = movieFile;
if (newDownload)
{
if (localMovie.ScriptImported)