diff --git a/plugin.video.alfa/channels/divxatope.py b/plugin.video.alfa/channels/divxatope.py
index 6594d685..8e48defe 100644
--- a/plugin.video.alfa/channels/divxatope.py
+++ b/plugin.video.alfa/channels/divxatope.py
@@ -258,12 +258,11 @@ def findvideos(item):
# Descarga la pagina
data = httptools.downloadpage(item.url).data
-
item.plot = scrapertools.find_single_match(data, '
(.*?)
')
item.plot = scrapertools.htmlclean(item.plot).strip()
item.contentPlot = item.plot
- link = scrapertools.find_single_match(data, 'href="http://(?:tumejorserie|tumejorjuego).*?link=([^"]+)"')
+ link = scrapertools.find_single_match(data, 'href.*?=.*?"http:\/\/(?:tumejorserie|tumejorjuego).*?link=([^"]+)"')
if link != "":
link = "http://www.divxatope1.com/" + link
logger.info("torrent=" + link)
@@ -272,12 +271,16 @@ def findvideos(item):
url=link, thumbnail=servertools.guess_server_thumbnail("torrent"), plot=item.plot, folder=False,
parentContent=item))
- patron = "([^<]+)
([^<]+)([^<]+)(.*?)([^<]+)<'
+ patron = '([^<]+)<\/div[^<]+
([^<]+)'
+ patron += '<\/div[^<]+
([^<]+)<\/div[^<]+
([^<]+)
(.*?)
([^<]+)<'
matches = re.compile(patron, re.DOTALL).findall(data)
scrapertools.printMatches(matches)