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
All checks were successful
Build and Release .deb / build-deb (push) Successful in 22s
This commit is contained in:
parent
eed84f36e8
commit
af9e061ab5
1 changed files with 1 additions and 1 deletions
|
|
@ -208,7 +208,7 @@ class FullUpdaterApp(App):
|
|||
return
|
||||
executor = UpgradeExecutor(
|
||||
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()
|
||||
if ok:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue