fix issue due to removal of user web server

pull/586/head
Thorsten von Eicken 5 years ago committed by xyx0826
parent 6fe804f8cd
commit 376dc6adcf
No known key found for this signature in database
GPG Key ID: 643A61E2874B97F8
  1. 9
      src/cgi.c

@ -216,12 +216,17 @@ int ICACHE_FLASH_ATTR cgiMenu(HttpdConnData *connData) {
"\"Debug log\", \"/log.html\","
"\"Upgrade Firmware\", \"/flash.html\","
"\"Web Server\", \"/web-server.html\""
"%s"
#ifdef WEBSERVER
"%s"
#endif
" ], "
"\"version\": \"%s\", "
"\"name\": \"%s\""
" }",
WEB_UserPages(), esp_link_version, name);
#ifdef WEBSERVER
WEB_UserPages(),
#endif
esp_link_version, name);
httpdSend(connData, buff, -1);
return HTTPD_CGI_DONE;

Loading…
Cancel
Save