We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1bf52a1 commit 9034c1cCopy full SHA for 9034c1c
internal_filesystem/builtin/apps/com.micropythonos.osupdate/assets/osupdate.py
@@ -198,7 +198,8 @@ def update_with_lvgl(self, url):
198
lv.async_call(lambda l: self.status_label.set_text(f"Wrote {bytes_written} < {total_size} so not enough!"), None)
199
self.install_button.remove_state(lv.STATE.DISABLED) # allow retry
200
except Exception as e:
201
- lv.async_call(lambda l: self.status_label.set_text(f"Update error: {e}"), None)
+ if self.keep_running:
202
+ lv.async_call(lambda l: self.status_label.set_text(f"Update error: {e}"), None)
203
204
205
# Non-class functions:
0 commit comments