From 6bfdcd47a11c3cf43da7b32c1172f22daa415f24 Mon Sep 17 00:00:00 2001 From: hans boot Date: Sat, 27 Jan 2024 14:03:59 +0100 Subject: [PATCH] Allow more time for http get --- src/hasp/hasp_attribute.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hasp/hasp_attribute.cpp b/src/hasp/hasp_attribute.cpp index f0934fb7..105cefce 100644 --- a/src/hasp/hasp_attribute.cpp +++ b/src/hasp/hasp_attribute.cpp @@ -1346,7 +1346,7 @@ static hasp_attribute_type_t special_attribute_src(lv_obj_t* obj, const char* pa #if HASP_USE_WIFI > 0 || HASP_USE_ETHERNET > 0 HTTPClient http; http.begin(payload); - http.setTimeout(1000); + http.setTimeout(5000); http.setConnectTimeout(5000); // const char* hdrs[] = {"Content-Type"};