diff --git a/channelselector.py b/channelselector.py index ebc672a2..a0804291 100644 --- a/channelselector.py +++ b/channelselector.py @@ -424,14 +424,14 @@ def thumb(itemlist=[], genre=False, thumb=''): item.thumbnail = get_thumb(thumb + '.png') else: item.thumbnail = get_thumb(thumb + '.png') else: - thumb = item.thumbnails + thumb = item.thumbnail else: for thumb, titles in icon_dict.items(): if any(word in re.split(r'\.|\{|\}|\[|\]|\(|\)| ',item.title.lower()) for word in titles ): item.thumbnail = get_thumb(thumb + '.png') else: - thumb = item.thumbnails + thumb = item.thumbnail item.title = re.sub(r'\s*\{[^\}]+\}','',item.title) diff --git a/core/support.py b/core/support.py index 53d58836..5da507d9 100755 --- a/core/support.py +++ b/core/support.py @@ -552,7 +552,7 @@ def dooplay_search_vars(item, blacklist): def dooplay_menu(item, type): - patron = '(?P[a-zA-Z0-9]+)' + patronMenu = '<a href="(?P<url>[^"#]+)"(?: title="[^"]+")?>(?P<title>[a-zA-Z0-9]+)' patronBlock = '<nav class="' + item.args + '">(?P<block>.*?)</nav>' action = 'peliculas'