We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 60b0192 + 00cde47 commit 2ec0d04Copy full SHA for 2ec0d04
1 file changed
supervisor/shared/web_workflow/web_workflow.c
@@ -243,7 +243,7 @@ bool supervisor_start_web_workflow(void) {
243
char password[64];
244
245
os_getenv_err_t result = common_hal_os_getenv_str("CIRCUITPY_WIFI_SSID", ssid, sizeof(ssid));
246
- if (result != GETENV_OK) {
+ if (result != GETENV_OK || strlen(ssid) < 1) {
247
return false;
248
}
249
0 commit comments