latest release
All checks were successful
Update channel domains / update (push) Successful in 21s

This commit is contained in:
2025-01-18 11:01:23 +01:00
parent 881a61d24a
commit 36a89c1979
32 changed files with 1578 additions and 271 deletions

View File

@@ -8,7 +8,7 @@ from core.item import Item
from core import filetools
from platformcode import config, logger, platformtools
from platformcode.logger import WebErrorException
from six.moves import urllib
def start():
'''
@@ -226,7 +226,7 @@ def makeItem():
key, val = e.split('=')
if val.lower() == 'false': val = False
elif val.lower() == 'true': val = True
item.__setattr__(key, val)
item.__setattr__(key, urllib.parse.unquote(val) if isinstance(val,str) else val)
# If no item, this is mainlist
else:
item = Item(channel='channelselector', action='getmainlist', viewmode='movie')