From a12e9edb765f2eb3be19770f2d3f0f70254f19c2 Mon Sep 17 00:00:00 2001 From: pipcat Date: Thu, 5 Apr 2018 19:12:51 +0200 Subject: [PATCH] =?UTF-8?q?Tener=20en=20cuenta=20el=20n=C3=BAmero=20de=20e?= =?UTF-8?q?nlaces=20a=20verificar?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugin.video.alfa/channels/newpct.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugin.video.alfa/channels/newpct.py b/plugin.video.alfa/channels/newpct.py index 25abeb2d..b6833ac6 100755 --- a/plugin.video.alfa/channels/newpct.py +++ b/plugin.video.alfa/channels/newpct.py @@ -12,6 +12,7 @@ from core import httptools from platformcode import config __comprueba_enlaces__ = config.get_setting('comprueba_enlaces', 'newpct') +__comprueba_enlaces_num__ = config.get_setting('comprueba_enlaces_num', 'newpct') Host='http://www.tvsinpagar.com' @@ -101,5 +102,5 @@ def findvideos(item): for it in itemlist: it.channel = item.channel if __comprueba_enlaces__: - itemlist = servertools.check_list_links(itemlist) + itemlist = servertools.check_list_links(itemlist, __comprueba_enlaces_num__) return itemlist