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

Fixed missing transfer to the result screen when the connection failure

pull/41/head
Hieromon Ikasamo 6 years ago
parent d500b7f2e3
commit 3fa5dfd76f
  1. 2
      src/AutoConnect.cpp

@ -455,7 +455,7 @@ void AutoConnect::handleRequest() {
_redirectURI = String(AUTOCONNECT_URI_FAIL); _redirectURI = String(AUTOCONNECT_URI_FAIL);
_rsConnect = WiFi.status(); _rsConnect = WiFi.status();
_disconnectWiFi(false); _disconnectWiFi(false);
while (WiFi.status() != WL_IDLE_STATUS) { while (WiFi.status() != WL_IDLE_STATUS && WiFi.status() != WL_DISCONNECTED) {
delay(10); delay(10);
yield(); yield();
} }

Loading…
Cancel
Save