1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-07-07 04:19:25 +02:00

Remove old Multi language workaround

This commit is contained in:
Qstick 2022-03-26 18:09:47 -05:00 committed by GitHub
parent 32393eabb7
commit ad8629fac9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -281,15 +281,6 @@ public static List<Language> ParseLanguages(string title)
}
}
if (title.ToLower().Contains("multi"))
{
//Let's add english language to multi release as a safe guard.
if (!languages.Contains(Language.English) && languages.Count < 2)
{
languages.Add(Language.English);
}
}
if (!languages.Any())
{
languages.Add(Language.Unknown);