From 109f00368e3dbd79a78b2b910acef7cc18808697 Mon Sep 17 00:00:00 2001 From: fvanroie Date: Thu, 8 Feb 2024 17:55:45 +0100 Subject: [PATCH] Remove root CA cert bundle --- src/hasp/hasp_attribute.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/hasp/hasp_attribute.cpp b/src/hasp/hasp_attribute.cpp index c40063d0..b903cc93 100644 --- a/src/hasp/hasp_attribute.cpp +++ b/src/hasp/hasp_attribute.cpp @@ -1348,7 +1348,8 @@ static hasp_attribute_type_t special_attribute_src(lv_obj_t* obj, const char* pa #if defined(ARDUINO) && defined(ARDUINO_ARCH_ESP32) #if HASP_USE_WIFI > 0 || HASP_USE_ETHERNET > 0 HTTPClient http; - http.begin(payload, (const char*)rootca_crt_bundle_start); + // http.begin(payload, (const char*)rootca_crt_bundle_start); + http.begin(payload); http.setTimeout(5000); http.setConnectTimeout(5000);