appstore: lower stack size for image thread, otherwise esp32 errors

This commit is contained in:
Thomas Farstrike
2025-05-16 16:51:19 +02:00
parent 6a4f6daadc
commit 9d11c1c623
@@ -301,7 +301,7 @@ def create_apps_list():
desc_label.add_event_cb(lambda e, a=app: show_app_detail(a), lv.EVENT.CLICKED, None)
print("create_apps_list app done")
try:
_thread.stack_size(32*1024) # seems to need 32KB for urequests
_thread.stack_size(12*1024)
_thread.start_new_thread(download_icons,())
except Exception as e:
print("Could not start thread to download icons: ", e)