Fix Visualizzazioni

This commit is contained in:
Alhaziel01
2021-11-05 09:57:44 +01:00
parent a49e6b5e07
commit 69480575e1
3 changed files with 24 additions and 9 deletions
+5 -1
View File
@@ -318,8 +318,12 @@ def run_threaded(job_func, args):
def join_threads():
logger.debug(threads)
for th in threads:
th.join()
try:
th.join()
except:
logger.error(traceback.format_exc())
class AddonMonitor(xbmc.Monitor):