Mejoras compatibilidad Kodi 19

This commit is contained in:
Kingbox
2020-02-17 18:19:42 +01:00
committed by marco
parent 0ff1160d6f
commit 32f68499f0
3 changed files with 15 additions and 3 deletions

View File

@@ -567,10 +567,12 @@ def title_format(item):
title = '[B][COLOR limegreen][%s][/COLOR][/B] %s' % (check, item.title.decode('utf-8'))
item.title = title.encode('utf-8')
if PY3: item.title = item.title.decode('utf-8')
except:
check = 'v'
title = '[B][COLOR limegreen][%s][/COLOR][/B] %s' % (check, item.title.decode('utf-8'))
item.title = title.encode('utf-8')
if PY3: item.title = item.title.decode('utf-8')
return item