Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/AutoConnect/commit/d500b7f2e3e236cc7ed9f083a9058074176e5712?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed incorrect connection failure situation with ESP8266

pull/41/head
Hieromon Ikasamo 6 years ago
parent 6aa77694bc
commit d500b7f2e3
  1. 2
      src/AutoConnectPage.cpp

@ -894,7 +894,7 @@ String AutoConnect::_token_STATION_STATUS(PageArgument& args) {
"CONNECT_FAIL",
"GOT_IP"
};
switch (_rsConnect) {
switch (wifi_station_get_connect_status()) {
case STATION_IDLE:
wlStatusSymbol = wlStatusSymbols[0];
break;

Loading…
Cancel
Save