We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0654cdf commit 00cde47Copy full SHA for 00cde47
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