From 01b1844e9dec96d2a5505c8610a74031d31a1ddb Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Fri, 24 Oct 2025 14:38:46 -0700 Subject: [PATCH] must still be in ram on 8266 --- esphome/components/sntp/sntp_component.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/esphome/components/sntp/sntp_component.h b/esphome/components/sntp/sntp_component.h index 74c342a38ab..de40faa2593 100644 --- a/esphome/components/sntp/sntp_component.h +++ b/esphome/components/sntp/sntp_component.h @@ -18,7 +18,7 @@ namespace sntp { /// \see https://www.gnu.org/software/libc/manual/html_node/TZ-Variable.html class SNTPComponent : public time::RealTimeClock { public: - template SNTPComponent(Args... servers) : servers_{servers...} {} + SNTPComponent(std::array servers) : servers_(servers) {} void setup() override; void dump_config() override;