From 763499cbe015e47a0f327954174f43c962443eaa Mon Sep 17 00:00:00 2001 From: Hieromon Ikasamo Date: Sun, 8 Sep 2019 02:21:48 +0900 Subject: [PATCH] Fixed an emptyString missing --- examples/WebUpdate/HTTPUpdateServer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/WebUpdate/HTTPUpdateServer.h b/examples/WebUpdate/HTTPUpdateServer.h index b717a77..1cc5d1e 100644 --- a/examples/WebUpdate/HTTPUpdateServer.h +++ b/examples/WebUpdate/HTTPUpdateServer.h @@ -18,7 +18,7 @@ class WebServer; class HTTPUpdateServer { public: - explicit HTTPUpdateServer(bool serial_debug = false) : _serial_output(serial_debug), _server(nullptr), _username(emptyString), _password(emptyString), _authenticated(false) {} + explicit HTTPUpdateServer(bool serial_debug = false) : _serial_output(serial_debug), _server(nullptr), _username(_emptyString), _password(_emptyString), _authenticated(false) {} ~HTTPUpdateServer() {} void setup(WebServer* server) { setup(server, _emptyString, _emptyString); } void setup(WebServer* server, const String& path) { setup(server, path, _emptyString, _emptyString); }