From 5b4472ab56dfa3c63eb1c243910f7d9c38aa633e Mon Sep 17 00:00:00 2001 From: Jm Casler Date: Fri, 16 Oct 2020 19:38:59 -0700 Subject: [PATCH] fix case of HttpAPI class --- src/meshwifi/meshhttp.cpp | 2 +- src/meshwifi/meshhttp.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/meshwifi/meshhttp.cpp b/src/meshwifi/meshhttp.cpp index 85e4bf73e..7f26800af 100644 --- a/src/meshwifi/meshhttp.cpp +++ b/src/meshwifi/meshhttp.cpp @@ -39,7 +39,7 @@ HTTPSServer *secureServer; HTTPServer *insecureServer; // Our API to handle messages to and from the radio. -httpAPI webAPI; +HttpAPI webAPI; // Declare some handler functions for the various URLs on the server void handleAPIv1FromRadio(HTTPRequest *req, HTTPResponse *res); diff --git a/src/meshwifi/meshhttp.h b/src/meshwifi/meshhttp.h index 38949b952..4ced96c32 100644 --- a/src/meshwifi/meshhttp.h +++ b/src/meshwifi/meshhttp.h @@ -135,7 +135,7 @@ const byte FAVICON_DATA[] = { // Length of the binary data const int FAVICON_LENGTH = 2238; -class httpAPI : public PhoneAPI +class HttpAPI : public PhoneAPI { public: