diff --git a/usr/lib/enigma2/python/Plugins/Extensions/vavoo/vUtils.py b/usr/lib/enigma2/python/Plugins/Extensions/vavoo/vUtils.py index 316863e..9c3337e 100644 --- a/usr/lib/enigma2/python/Plugins/Extensions/vavoo/vUtils.py +++ b/usr/lib/enigma2/python/Plugins/Extensions/vavoo/vUtils.py @@ -190,10 +190,12 @@ def ReloadBouquets(): eDVBDB.getInstance().reloadServicelist() eDVBDB.getInstance().reloadBouquets() + def decodeHtml(text): if pythonVer == 3: import html - text = html.unescape(text.decode('utf8')).encode('utf8') + text = html.unescape(text) # .decode('unicode_escape') + # text = html.unescape(text.decode('utf8', error=ignore)).encode('utf8') else: from six.moves import (html_parser) h = html_parser.HTMLParser()