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