From 0a4cba748902623e29ba87fe5041413df8c48ff6 Mon Sep 17 00:00:00 2001 From: Alhaziel01 Date: Tue, 25 Oct 2022 19:36:46 +0200 Subject: [PATCH] traceback alla chiusura di globalsearch --- specials/globalsearch.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/specials/globalsearch.py b/specials/globalsearch.py index 04030140..85d1cbb9 100644 --- a/specials/globalsearch.py +++ b/specials/globalsearch.py @@ -744,7 +744,11 @@ class SearchWindow(xbmcgui.WindowXML): busy(True) for th in self.search_threads: th.cancel() - self.thread.join() + try: + self.thread.join() + except: + import traceback + logger.error(traceback.format_exc()) busy(False) self.close()