error in line 1124 in ESPAsyncWebServer.h #87
yustAnotherUser
started this conversation in
Support
Replies: 1 comment
-
The code is ok, please search in the discussions of the librairies. This is mostly an environnement error on your end, like a wrong library version |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
IDE / Tooling
Arduino (IDE/CLI)
What happened?
it currently throws errors:
the line in ESPASyncWebServer.h currently looks like this:
return static_cast<tcp_state>(_server.status());
but it must be:
return static_cast<tcp_state>(const_cast<AsyncServer&>(_server).status());
fix by kimi.com
greetings
Edit: wrong repo. sorry.
Stack Trace
see initial post
Minimal Reproductible Example (MRE)
see initial post
I confirm that:
Beta Was this translation helpful? Give feedback.
All reactions