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
commit f6a37186aa

View file

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