From b11fb3dec3fcac626ce18012436506dcbb4d8757 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Tue, 25 Oct 2022 19:15:50 +0200 Subject: [PATCH] Fix Chiusura Globalsearch --- specials/globalsearch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specials/globalsearch.py b/specials/globalsearch.py index 670b7583..04030140 100644 --- a/specials/globalsearch.py +++ b/specials/globalsearch.py @@ -740,7 +740,7 @@ class SearchWindow(xbmcgui.WindowXML): def Close(self): self.exit = True - if self.thread: + if self.thread and self.thread.is_alive(): busy(True) for th in self.search_threads: th.cancel()