From 1bdb9809b3259073ce8e46cb0b5d5830108c17e7 Mon Sep 17 00:00:00 2001 From: mac12m99 <10120390+mac12m99@users.noreply.github.com> Date: Tue, 30 Mar 2021 18:05:54 +0200 Subject: [PATCH] possibile fix trakt --- core/trakt_tools.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/trakt_tools.py b/core/trakt_tools.py index ecd94ffd..f1fb8aca 100644 --- a/core/trakt_tools.py +++ b/core/trakt_tools.py @@ -266,11 +266,12 @@ def ask_install_script(): def wait_for_update_trakt(): logger.debug() - t = Thread(update_all) + t = Thread(target=update_all) t.setDaemon(True) t.start() t.is_alive() + def update_all(): # from core.support import dbg;dbg() from time import sleep