This commit is contained in:
Tomasz Duda 2024-08-13 07:24:08 +02:00
parent 07cb903334
commit 9920d8cba0

View file

@ -134,6 +134,7 @@ class OTARequestHandler : public AsyncWebHandler {
bool canHandle(AsyncWebServerRequest *request) override { bool canHandle(AsyncWebServerRequest *request) override {
return request->url() == "/update" && request->method() == HTTP_POST; return request->url() == "/update" && request->method() == HTTP_POST;
} }
// NOLINTNEXTLINE(readability-identifier-naming) // NOLINTNEXTLINE(readability-identifier-naming)
bool isRequestHandlerTrivial() override { return false; } bool isRequestHandlerTrivial() override { return false; }