diff --git a/core/support.py b/core/support.py index 6d29ee12..d79ae0e1 100755 --- a/core/support.py +++ b/core/support.py @@ -1059,8 +1059,8 @@ def videolibrary(itemlist, item, typography='', function_level=1, function=''): if not typography: typography = 'color kod bold' title = typo(config.get_localized_string(30161), typography) - contentSerieName=item.contentSerieName if item.contentSerieName else '' - contentTitle=item.contentTitle if item.contentTitle else '' + contentSerieName=item.contentSerieName if item.contentSerieName else item.fulltitle if item.contentType != 'movie' else '' + contentTitle=item.contentTitle if item.contentTitle else item.fulltitle if item.contentType == 'movie' else '' if (function == 'findvideos' and contentType == 'movie') \ or (function == 'episodios' and contentType != 'movie'): diff --git a/specials/community.py b/specials/community.py index 04394324..2970a325 100644 --- a/specials/community.py +++ b/specials/community.py @@ -111,12 +111,8 @@ def show_menu(item): - if 'channel_name' in json and not 'disable_search' in json: - if 'search' in json and 'url' in json['search']: - search_json = json['search'] - itemlist += get_search_menu(item, search_json, channel_name=json['channel_name']) - else: - itemlist += get_search_menu(item, json, channel_name=json['channel_name']) + if 'channel_name' in json and not 'disable_search' in json and 'search' not in json: + itemlist += get_search_menu(item, json, channel_name=json['channel_name']) support.log('PAGINATION:', disable_pagination) return itemlist