traceback alla chiusura di globalsearch

This commit is contained in:
Alhaziel01
2022-10-25 19:36:46 +02:00
parent b11fb3dec3
commit 0a4cba7489
+4
View File
@@ -744,7 +744,11 @@ class SearchWindow(xbmcgui.WindowXML):
busy(True) busy(True)
for th in self.search_threads: for th in self.search_threads:
th.cancel() th.cancel()
try:
self.thread.join() self.thread.join()
except:
import traceback
logger.error(traceback.format_exc())
busy(False) busy(False)
self.close() self.close()