1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

Fixed: Don't die in FileNameBuilder when Certification is Null

This commit is contained in:
Qstick 2020-07-25 02:32:29 -04:00
parent 86a75e2641
commit ea7c08d219

View File

@ -234,8 +234,12 @@ private void AddMovieTokens(Dictionary<string, Func<TokenMatch, string>> tokenHa
tokenHandlers["{Movie Title}"] = m => GetLanguageTitle(movie, m.CustomFormat);
tokenHandlers["{Movie CleanTitle}"] = m => CleanTitle(GetLanguageTitle(movie, m.CustomFormat));
tokenHandlers["{Movie Title The}"] = m => TitleThe(movie.Title);
tokenHandlers["{Movie Certification}"] = mbox => movie.Certification;
tokenHandlers["{Movie TitleFirstCharacter}"] = m => TitleThe(movie.Title).Substring(0, 1).FirstCharToUpper();
if (movie.Certification.IsNotNullOrWhiteSpace())
{
tokenHandlers["{Movie Certification}"] = mbox => movie.Certification;
};
}
private string GetLanguageTitle(Movie movie, string isoCodes)