Your ROOT_URL in app.ini is https://source.parasitstudio.de:63000/ but you are visiting https://source.parasitstudio.de/wirtz/AutoConnect/commit/c7922a1c4e4c203318f35f88dad611114fc82295?style=split&whitespace=ignore-change
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
src/AutoConnectCredential.cpp
@ -210,10 +210,10 @@ bool AutoConnectCredential::save(const struct station_config* config) {
}
}
// Seek insertion point, evaluate capacity to insert the new entry.
// Seek insertion point, evaluate capacity to insert the new entry.
uint8 _t eSize = strlen ( ( const char * ) config - > ssid ) + strlen ( ( const char * ) config - > password ) + sizeof ( station_config : : bssid ) + 2 ;
uint16 _t eSize = strlen ( ( const char * ) config - > ssid ) + strlen ( ( const char * ) config - > password ) + sizeof ( station_config : : bssid ) + 2 ;
for ( _dp = AC_HEADERSIZE ; _dp < _containSize + AC_HEADERSIZE ; _dp + + ) {
for ( _dp = AC_HEADERSIZE ; _dp < _containSize + AC_HEADERSIZE ; _dp + + ) {
if ( EEPROM . read ( _dp ) = = 0xff ) {
if ( EEPROM . read ( _dp ) = = 0xff ) {
uint8 _t fp = _dp ;
uint16 _t fp = _dp ;
while ( EEPROM . read ( + + _dp ) = = 0xff ) { }
while ( EEPROM . read ( + + _dp ) = = 0xff ) { }
if ( _dp - fp > = eSize ) {
if ( _dp - fp > = eSize ) {
_dp = fp ;
_dp = fp ;