traceback alla chiusura di globalsearch

This commit is contained in:
Alhaziel01
2022-10-25 19:36:46 +02:00
parent b11fb3dec3
commit 0a4cba7489

View File

@@ -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()