From be8c66d7687586235ba6a7d670234bab920ef651 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Fri, 9 Oct 2020 18:34:26 +0200 Subject: [PATCH] Fix Community --- specials/community.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/specials/community.py b/specials/community.py index 48152ceb..47e9735c 100644 --- a/specials/community.py +++ b/specials/community.py @@ -137,7 +137,11 @@ def search(item, text): json = load_json(item) if json: for key in json: - peliculas(item, json, key, itemlist) + if key not in ['sort']: + if item.custom_search and key == 'menu': + get_menu(item, json, key, itemlist) + else: + peliculas(item, json, key, itemlist) return itemlist