From 0650dbac051b4f49b39e01253f25d054eac08eaf Mon Sep 17 00:00:00 2001 From: Belfagor2005 <72314956+Belfagor2005@users.noreply.github.com> Date: Wed, 18 Sep 2024 12:20:38 +0200 Subject: [PATCH] Update vUtils.py --- usr/lib/enigma2/python/Plugins/Extensions/vavoo/vUtils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/usr/lib/enigma2/python/Plugins/Extensions/vavoo/vUtils.py b/usr/lib/enigma2/python/Plugins/Extensions/vavoo/vUtils.py index fef50b3..316863e 100644 --- a/usr/lib/enigma2/python/Plugins/Extensions/vavoo/vUtils.py +++ b/usr/lib/enigma2/python/Plugins/Extensions/vavoo/vUtils.py @@ -190,11 +190,10 @@ def ReloadBouquets(): eDVBDB.getInstance().reloadServicelist() eDVBDB.getInstance().reloadBouquets() - def decodeHtml(text): if pythonVer == 3: import html - text = html.unescape(text) + text = html.unescape(text.decode('utf8')).encode('utf8') else: from six.moves import (html_parser) h = html_parser.HTMLParser()