Update src/NzbDrone.Core/Organizer/FileNameBuilder.cs

This commit is contained in:
Mark McDowall 2023-10-08 23:26:16 -04:00 committed by GitHub
parent e7ef30ee6f
commit d9bd9e11a7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -384,7 +384,7 @@ namespace NzbDrone.Core.Organizer
return title.Substring(0, 1).ToUpper().RemoveAccent();
}
// try the second character if the first was non alphanumeric
// Try the second character if the first was non alphanumeric
if (char.IsLetterOrDigit(title[1]))
{
return title.Substring(1, 1).ToUpper().RemoveAccent();