From 7f2760aa0a47b30a47a51594a852c8e9d5d16379 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Fran=C3=A7ois=20Auger?= Date: Wed, 31 Mar 2021 21:51:08 +0200 Subject: [PATCH] required for esp32-1.06 library upgrade fix #235 reported by @jameszah --- src/UniversalTelegramBot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UniversalTelegramBot.cpp b/src/UniversalTelegramBot.cpp index d449098..fbb1ac7 100644 --- a/src/UniversalTelegramBot.cpp +++ b/src/UniversalTelegramBot.cpp @@ -247,7 +247,7 @@ String UniversalTelegramBot::sendMultipartFormDataToTelegram( client->println(String(contentLength)); client->print(F("Content-Type: multipart/form-data; boundary=")); client->println(boundary); - client->println(F("")); + client->println(); client->print(start_request); #ifdef TELEGRAM_DEBUG