mirror of
https://github.com/Radarr/Radarr
synced 2025-12-18 22:40:28 +01:00
Fix error for movies with less than 4 characters. Fixes #507
This commit is contained in:
parent
9522bf3095
commit
f6a37186aa
1 changed files with 6 additions and 0 deletions
|
|
@ -323,6 +323,12 @@ public static string CleanTitle(string title)
|
|||
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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue