From 56533b5ff653597ac2b85fb7e54536623373fa7d Mon Sep 17 00:00:00 2001 From: Alhaziel Date: Wed, 9 Oct 2019 18:32:00 +0200 Subject: [PATCH] Fix server CB01 --- channels/cineblog01.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/channels/cineblog01.py b/channels/cineblog01.py index 20699aee..548cc499 100644 --- a/channels/cineblog01.py +++ b/channels/cineblog01.py @@ -163,13 +163,13 @@ def findvideos(item): QualityStr = scrapertoolsV2.decodeHtmlentities(match.group(1))[6:] # Estrae i contenuti - Streaming - load_links(itemlist, 'Streaming:(.*?)', "orange", "Streaming", "SD") + load_links(itemlist, 'Streaming:(.*?)cbtable', "orange", "Streaming", "SD") # Estrae i contenuti - Streaming HD - load_links(itemlist, 'Streaming HD[^<]+(.*?)', "yellow", "Streaming HD", "HD") + load_links(itemlist, 'Streaming HD[^<]+(.*?)cbtable', "yellow", "Streaming HD", "HD") # Estrae i contenuti - Streaming 3D - load_links(itemlist, 'Streaming 3D[^<]+(.*?)', "pink", "Streaming 3D") + load_links(itemlist, 'Streaming 3D[^<]+(.*?)cbtable', "pink", "Streaming 3D") return support.server(item, itemlist=itemlist)