From b1775e3e462f38c1843808a4ef94d816decdb496 Mon Sep 17 00:00:00 2001 From: Alhaziel Date: Sat, 16 Nov 2019 15:35:37 +0100 Subject: [PATCH] Fix CB01, sezione server --- channels/cineblog01.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/channels/cineblog01.py b/channels/cineblog01.py index 99811879..8a62f9d9 100644 --- a/channels/cineblog01.py +++ b/channels/cineblog01.py @@ -178,8 +178,10 @@ def findvideos(item): def load_links(itemlist, re_txt, color, desc_txt, quality=""): streaming = scrapertoolsV2.find_single_match(data, re_txt).replace('"', '') + support.log('STREAMING',streaming) support.log('STREAMING=', streaming) - patron = ']+>([^<]+)<' + # patron = ']+>([^<]+)<' + patron = ']+>([^<]+)<' matches = re.compile(patron, re.DOTALL).findall(streaming) for scrapedurl, scrapedtitle in matches: logger.debug("##### findvideos %s ## %s ## %s ##" % (desc_txt, scrapedurl, scrapedtitle))