From bf3a92905f9e1034099d35b6c615d8ee67280e03 Mon Sep 17 00:00:00 2001 From: Belfagor2005 <72314956+Belfagor2005@users.noreply.github.com> Date: Fri, 20 Sep 2024 20:54:43 +0200 Subject: [PATCH] Update vUtils.py --- usr/lib/enigma2/python/Plugins/Extensions/vavoo/vUtils.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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()