Skip to content

Commit 9d11c1c

Browse files
appstore: lower stack size for image thread, otherwise esp32 errors
1 parent 6a4f6da commit 9d11c1c

File tree

1 file changed

+1
-1
lines changed
  • internal_filesystem/builtin/apps/com.example.appstore/assets

1 file changed

+1
-1
lines changed

internal_filesystem/builtin/apps/com.example.appstore/assets/appstore.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ def create_apps_list():
301301
desc_label.add_event_cb(lambda e, a=app: show_app_detail(a), lv.EVENT.CLICKED, None)
302302
print("create_apps_list app done")
303303
try:
304-
_thread.stack_size(32*1024) # seems to need 32KB for urequests
304+
_thread.stack_size(12*1024)
305305
_thread.start_new_thread(download_icons,())
306306
except Exception as e:
307307
print("Could not start thread to download icons: ", e)

0 commit comments

Comments
 (0)