Fixed subdivx provider when there's a year in series directory name but not on the provider website. #1454

This commit is contained in:
morpheus65535 2021-06-30 20:24:14 -04:00
parent 9b3e91eee2
commit 4a78f3b6b8

View file

@ -178,9 +178,11 @@ class SubdivxSubtitlesProvider(Provider):
title_soup, body_soup = title_soups[subtitle], body_soups[subtitle] title_soup, body_soup = title_soups[subtitle], body_soups[subtitle]
# title # title
title = self._clean_title(title_soup.find("a").text) title = self._clean_title(title_soup.find("a").text)
# filter by year # discard subtitles if a year between parenthesis is present in title and doesn't match the one provided
if video.year and str(video.year) not in title: # in video object
continue if re.match(r'(\(\d{4}\))', title):
if video.year and str(video.year) not in title:
continue
# Data # Data
datos = body_soup.find("div", {"id": "buscador_detalle_sub_datos"}).text datos = body_soup.find("div", {"id": "buscador_detalle_sub_datos"}).text