sqlitedict cache e migliore gestione dei thread

This commit is contained in:
mac12m99
2021-09-28 20:13:15 +02:00
parent 613087342b
commit 1bd771b565
4 changed files with 25 additions and 6 deletions

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):