From 796e735452cac11d61e0e5439a12e83bedcc7d37 Mon Sep 17 00:00:00 2001 From: Justin Mitchell Date: Fri, 2 Jan 2026 20:17:59 -0500 Subject: [PATCH] more CI checks --- src/network/HttpDownloader.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/network/HttpDownloader.cpp b/src/network/HttpDownloader.cpp index aaa01345..7936a737 100644 --- a/src/network/HttpDownloader.cpp +++ b/src/network/HttpDownloader.cpp @@ -7,7 +7,7 @@ #include bool HttpDownloader::fetchUrl(const std::string& url, std::string& outContent) { - const std::unique_ptr client(new WiFiClientSecure); + const std::unique_ptr client(new WiFiClientSecure()); client->setInsecure(); HTTPClient http; @@ -33,7 +33,7 @@ bool HttpDownloader::fetchUrl(const std::string& url, std::string& outContent) { HttpDownloader::DownloadError HttpDownloader::downloadToFile(const std::string& url, const std::string& destPath, ProgressCallback progress) { - const std::unique_ptr client(new WiFiClientSecure); + const std::unique_ptr client(new WiFiClientSecure()); client->setInsecure(); HTTPClient http;