From abed6ebd9bceee066a40993fc77010954bafb374 Mon Sep 17 00:00:00 2001 From: Th3maz1ng Date: Tue, 14 Jul 2020 19:07:41 +0200 Subject: [PATCH] Corrected missing method --- src/app/tasks.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/tasks.cpp b/src/app/tasks.cpp index af885da..feb6c38 100644 --- a/src/app/tasks.cpp +++ b/src/app/tasks.cpp @@ -60,7 +60,7 @@ boolean task_post_data_logger(void * pData) if(p->rdy) { char buff[100]; - p->client.readHttpReply((uint8_t *)buff, 100); + p->client.readHttpBody((uint8_t *)buff, 100); Serial.print(buff); }