Fix error for movies with less than 4 characters. Fixes #507

This commit is contained in:
Leonardo Galli 2017-01-31 13:12:32 +01:00
parent 9522bf3095
commit f6a37186aa
1 changed files with 6 additions and 0 deletions

View File

@ -323,6 +323,12 @@ namespace NzbDrone.Core.Organizer
public static string TitleThe(string title)
{
string[] prefixes = { "The ", "An ", "A " };
if (title.Length < 5)
{
return title;
}
foreach (string prefix in prefixes)
{
int prefix_length = prefix.Length;