mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-01-01 02:26:01 +01:00
Fixed: Don't die in FileNameBuilder when Certification is Null
This commit is contained in:
@@ -234,8 +234,12 @@ namespace NzbDrone.Core.Organizer
|
||||
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)
|
||||
|
||||
Reference in New Issue
Block a user