fix(upgrade): remove call_from_thread in async worker, call log_panel.write directly
All checks were successful
Build and Release .deb / build-deb (push) Successful in 22s

This commit is contained in:
enzo 2026-05-13 02:11:08 +02:00
parent eed84f36e8
commit af9e061ab5

View file

@ -208,7 +208,7 @@ class FullUpdaterApp(App):
return return
executor = UpgradeExecutor( executor = UpgradeExecutor(
target_id, is_host, target_id, is_host,
on_line=lambda line: self.call_from_thread(log_panel.write, line) on_line=lambda line: log_panel.write(line)
) )
ok = await executor.run() ok = await executor.run()
if ok: if ok: