Fix NoBrowser Mode

* public_network_access example was broken
This commit is contained in:
Hassan DRAGA 2024-06-18 18:50:34 -04:00
parent 90e774bb13
commit 5657f3f481

View File

@ -6555,6 +6555,11 @@ static bool _webui_show_window(_webui_window_t * win, const char* content, int t
#endif
runBrowser = true;
}
} else {
#ifdef WEBUI_LOG
printf("[Core]\t\t_webui_show_window() -> Starting server only mode (NoBrowser).\n");
#endif
runBrowser = true;
}
}