From 9fb879e013e6a2bd53cfe920362d00bc9f5af843 Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 11 Apr 2018 16:38:33 -0300 Subject: [PATCH] Ajuste para verificacionde enlaces --- plugin.video.alfa/platformcode/unify.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.video.alfa/platformcode/unify.py b/plugin.video.alfa/platformcode/unify.py index c3594f1f..55385625 100644 --- a/plugin.video.alfa/platformcode/unify.py +++ b/plugin.video.alfa/platformcode/unify.py @@ -430,10 +430,10 @@ def title_format(item): #logger.debug('item.title: %s' % item.title) # si hay verificacion de enlaces if item.alive != '': - if item.alive == 'no': + if item.alive.lower() == 'no': item.title = '[[COLOR red][B]X[/B][/COLOR]] %s' % item.title elif item.alive == '??': - item.title = '[[COLOR yellow][B]-[/B][/COLOR]] %s' % item.title + item.title = '[[COLOR yellow][B]?[/B][/COLOR]] %s' % item.title else: item.title = '%s' % item.title #logger.debug('item.title despues de server: %s' % item.title)