1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-22 22:15:17 -04:00

New: Detect 'castellano' as Spanish Language

Fixes #6152
This commit is contained in:
bakerboy448
2021-04-06 11:36:15 -05:00
committed by Robin Dadswell
parent bec8312d61
commit ef9c1bf0a4
2 changed files with 4 additions and 1 deletions
+1 -1
View File
@@ -37,7 +37,7 @@ namespace NzbDrone.Core.Parser
languages.Add(Language.French);
}
if (lowerTitle.Contains("spanish"))
if (lowerTitle.Contains("spanish") || lowerTitle.Contains("castellano"))
{
languages.Add(Language.Spanish);
}