From 51fea45022bba2e16e22a6507d21b762700ba873 Mon Sep 17 00:00:00 2001 From: salqadri Date: Sat, 29 Oct 2016 13:52:58 -0700 Subject: [PATCH] Fixing deprecation warning on HttpClient begin --- src/FirebaseHttpClient_Esp8266.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/FirebaseHttpClient_Esp8266.cpp b/src/FirebaseHttpClient_Esp8266.cpp index ceecf52d..7643db1e 100644 --- a/src/FirebaseHttpClient_Esp8266.cpp +++ b/src/FirebaseHttpClient_Esp8266.cpp @@ -28,7 +28,7 @@ class FirebaseHttpClientEsp8266 : public FirebaseHttpClient { } void begin(const std::string& host, const std::string& path) override { - http_.begin(host.c_str(), kFirebasePort, path.c_str(), true, kFirebaseFingerprint); + http_.begin(host.c_str(), kFirebasePort, path.c_str(), kFirebaseFingerprint); } void end() override {