Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Belfagor2005 committed Sep 21, 2024
1 parent bf3a929 commit 0ea709a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CONTROL/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: enigma2-plugin-extensions-vavoo
Version: 1.28
Version: 1.30
Section: misc
Priority: optional
Architecture: all
Expand Down
4 changes: 2 additions & 2 deletions installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

##setup command=wget -q "--no-check-certificate" https://raw.githubusercontent.com/Belfagor2005/vavoo/main/installer.sh -O - | /bin/sh
######### Only This 2 lines to edit with new version ######
version='1.29'
changelog='\nAdd DNS Server\nMinor Fix'
version='1.30'
changelog='\nMinor Fix'
##############################################################

TMPPATH=/tmp/vavoo-main
Expand Down
4 changes: 2 additions & 2 deletions usr/lib/enigma2/python/Plugins/Extensions/vavoo/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@


# set plugin
currversion = '1.29'
currversion = '1.30'
title_plug = 'Vavoo'
desc_plugin = ('..:: Vavoo by Lululla v.%s ::..' % currversion)
PLUGIN_PATH = resolveFilename(SCOPE_PLUGINS, "Extensions/{}".format('vavoo'))
Expand Down Expand Up @@ -1286,7 +1286,7 @@ def __init__(self, session, name, url, index, item, cat_list):
self.new_aspect = self.init_aspect
self.service = None
self.url = url.replace('%0a', '').replace('%0A', '')
self.name = vUtils.decodeHtml(name)
self.name = name
self.state = self.STATE_PLAYING
self.srefInit = self.session.nav.getCurrentlyPlayingServiceReference()
self['actions'] = ActionMap(['MoviePlayerActions', 'MovieSelectionActions', 'MediaPlayerActions', 'EPGSelectActions', 'OkCancelActions',
Expand Down
3 changes: 1 addition & 2 deletions usr/lib/enigma2/python/Plugins/Extensions/vavoo/vUtils.py
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,7 @@ def ReloadBouquets():
def decodeHtml(text):
if pythonVer == 3:
import html
text = html.unescape(text) # .decode('unicode_escape')
# text = html.unescape(text.decode('utf8', error=ignore)).encode('utf8')
text = html.unescape(text.encode('utf-8').decode('unicode_escape'))
else:
from six.moves import (html_parser)
h = html_parser.HTMLParser()
Expand Down

0 comments on commit 0ea709a

Please sign in to comment.