mirror of
https://github.com/me-no-dev/ESPAsyncWebServer.git
synced 2026-01-27 09:12:18 +01:00
minor fixes in ESP32/ESP8266 code diffs
This commit is contained in:
committed by
Mathieu Carbou
parent
4240b337d5
commit
e4d9cf2d3f
@@ -661,10 +661,6 @@ bool AsyncWebServerRequest::hasParam(const String& name, bool post, bool file) c
|
||||
return false;
|
||||
}
|
||||
|
||||
bool AsyncWebServerRequest::hasParam(const __FlashStringHelper* data, bool post, bool file) const {
|
||||
return hasParam(String(data).c_str(), post, file);
|
||||
}
|
||||
|
||||
const AsyncWebParameter* AsyncWebServerRequest::getParam(const char* name, bool post, bool file) const {
|
||||
for (const auto& p : _params) {
|
||||
if (p.name() == name && p.isPost() == post && p.isFile() == file) {
|
||||
|
||||
Reference in New Issue
Block a user