From 82feca4ca22b43b09945dca3c975bbc5f5f3a09c Mon Sep 17 00:00:00 2001 From: thepasto Date: Mon, 15 Apr 2019 22:41:50 +0200 Subject: [PATCH] Vedohd small fixes --- plugin.video.alfa/channels/vedohd.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/plugin.video.alfa/channels/vedohd.py b/plugin.video.alfa/channels/vedohd.py index 71e3c5ba..4850640c 100644 --- a/plugin.video.alfa/channels/vedohd.py +++ b/plugin.video.alfa/channels/vedohd.py @@ -101,12 +101,14 @@ def findvideos(item): def generos(item): + findhost() patron = '([a-zA-Z]+)' return support.scrape(item, patron, ['url', 'title'], patron_block='Genere', action='peliculas', url_host=host) def year(item): - patron = '([a-zA-Z]+)' + findhost() + patron = r'(\d+)' return support.scrape(item, patron, ['url', 'title'], patron_block='Anno', action='peliculas', url_host=host)