diff --git a/libs/subliminal_patch/providers/subdivx.py b/libs/subliminal_patch/providers/subdivx.py index be72ff052..5be08e45e 100644 --- a/libs/subliminal_patch/providers/subdivx.py +++ b/libs/subliminal_patch/providers/subdivx.py @@ -25,6 +25,7 @@ (r"´|`", "'"), (r" {2,}", " "), ] +_SPANISH_RE = re.compile(r"españa|ib[eé]rico|castellano|gallego|castilla") _YEAR_RE = re.compile(r"(\(\d{4}\))") @@ -224,7 +225,10 @@ def _parse_subtitles_page(self, video, response): description = sub_details.replace(",", " ") # language - spain = "/pais/7.gif" in datos or "españa" in description.lower() + spain = ( + "/pais/7.gif" in datos + or _SPANISH_RE.search(description.lower()) is not None + ) language = Language.fromalpha2("es") if spain else Language("spa", "MX") # uploader