From dd573f18d1c6cc4ced0c162927541deb7f9e3302 Mon Sep 17 00:00:00 2001 From: Alhaziel Date: Thu, 20 Feb 2020 10:30:59 +0100 Subject: [PATCH] Fix Errore inizializzazione AutoPlay --- core/support.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/core/support.py b/core/support.py index ce32ae4d..d8a50eca 100755 --- a/core/support.py +++ b/core/support.py @@ -705,9 +705,9 @@ def menu(func): if global_search: menuItem(itemlist, filename, config.get_localized_string(70741) % '… bold', 'search', host + dictUrl['search']) - - autoplay.init(item.channel, list_servers, list_quality) - autoplay.show_option(item.channel, itemlist) + if 'get_channel_results' not in inspect.stack()[1][3]: + autoplay.init(item.channel, list_servers, list_quality) + autoplay.show_option(item.channel, itemlist) channel_config(item, itemlist) return itemlist