diff --git a/channels/serietvonline.py b/channels/serietvonline.py
index 27c6e059..5a3406db 100644
--- a/channels/serietvonline.py
+++ b/channels/serietvonline.py
@@ -107,8 +107,9 @@ def peliculas(item):
def episodios(item):
support.info()
action = 'findvideos'
- patronBlock = r'
(?P.*?)<\/table>'
- patron = r'| (?P.*?)?[ ](?:Parte)?(?P\d+x\d+|\d+)(?:|[ ]?(?P.+?)?(?:avi)?)<(?P.*?) |
'
+ patronBlock = r'(?P.*)<\/table>'
+ # patron = r'| (?P.*?)?[ ](?:Parte)?(?P\d+x\d+|\d+)(?:|[ ]?(?P.+?)?(?:avi)?)<(?P.*?) |
'
+ patron = r'
(?P.*?)?\s(?P\d+x\d+|\d+)(?:\s?(?P.+?)?(?:Parte\s*\d)?(?:avi)?)<\/td>| [^<]*<.*?href="(?P[^"]+)"'
def itemlistHook(itemlist):
for i, item in enumerate(itemlist):
ep = support.match(item.title, patron=r'\d+x(\d+)').match
| |