From 1e713ba94dfe71f92ef55589d2486f91a824e5a7 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Wed, 15 Apr 2020 15:32:47 +0200 Subject: [PATCH] Fix Community Channels --- specials/community.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/specials/community.py b/specials/community.py index 3c91da3a..c11af091 100644 --- a/specials/community.py +++ b/specials/community.py @@ -103,8 +103,11 @@ def show_menu(item): itemlist += episodios(item, json, key) elif key in ['links']: itemlist += findvideos(item) + elif key in ['search'] and 'url' in json['search']: + search_json = json['search'] + itemlist += get_search_menu(item, search_json) - if 'channel_name' in json: + 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'])