You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I try to build from the repo 2025-05-14 5:55am GMT, I get the below error:
lib/framework/SecuritySettingsService.cpp:18:59: error: invalid conversion from 'const AsyncWebHeader*' to 'AsyncWebHeader*'
AsyncWebHeader* authorizationHeader = request->getHeader(AUTHORIZATION_HEADER);
and
lib/framework/SecuritySettingsService.cpp:26:58: error: invalid conversion from 'const AsyncWebParameter*' to 'AsyncWebParameter*'
AsyncWebParameter* tokenParamater = request->getParam(ACCESS_TOKEN_PARAMATER);
It looks like the request->getHeader() and request->getParam() functions return const AsyncWebHeader* instead of AsyncWebHeader*. I suspect that the ESPAsyncWebServer has been updated and doesn't work with esp8266-react anymore.
The text was updated successfully, but these errors were encountered:
When I try to build from the repo 2025-05-14 5:55am GMT, I get the below error:
and
It looks like the
request->getHeader()
andrequest->getParam()
functions returnconst AsyncWebHeader*
instead ofAsyncWebHeader*
. I suspect that the ESPAsyncWebServer has been updated and doesn't work with esp8266-react anymore.The text was updated successfully, but these errors were encountered: