1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-08-16 15:29:40 +02:00

Include extra tags from existing subtitles when renaming.

This commit is contained in:
LarsHelo 2023-04-02 15:07:01 +02:00 committed by Qstick
parent 014079cf37
commit 85112e7fbd

View File

@ -54,6 +54,7 @@ public override IEnumerable<ExtraFile> ProcessFiles(Movie movie, List<string> fi
MovieFileId = movie.MovieFileId,
RelativePath = movie.Path.GetRelativePath(possibleSubtitleFile),
Language = LanguageParser.ParseSubtitleLanguage(possibleSubtitleFile),
LanguageTags = LanguageParser.ParseLanguageTags(possibleSubtitleFile).ToList<string>(),
Extension = extension
};