From 5ee8575f0730630c8bc389c343282017eb6a611d Mon Sep 17 00:00:00 2001 From: Anton Sergunov Date: Fri, 7 Jun 2024 13:21:56 +0000 Subject: [PATCH] Cleanup --- esphome/components/sntp/sntp_component.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/esphome/components/sntp/sntp_component.cpp b/esphome/components/sntp/sntp_component.cpp index 754c873480..6f289f0d0a 100644 --- a/esphome/components/sntp/sntp_component.cpp +++ b/esphome/components/sntp/sntp_component.cpp @@ -52,7 +52,6 @@ void SNTPComponent::dump_config() { ESP_LOGCONFIG(TAG, " Timezone: '%s'", this->timezone_.c_str()); } void SNTPComponent::set_servers(const std::string &server_1, const std::string &server_2, const std::string &server_3) { -#if !defined(USE_HOST) if (this->servers_was_setup_) { for (uint8_t i = 0; i < 3; ++i) { const auto &buff = this->servers_[i].empty() ? nullptr : this->servers_[i].c_str(); @@ -60,15 +59,14 @@ void SNTPComponent::set_servers(const std::string &server_1, const std::string & sntp_setservername(i, nullptr); } } -#endif + this->servers_[0] = server_1; this->servers_[1] = server_2; this->servers_[2] = server_3; -#if !defined(USE_HOST) + if (this->servers_was_setup_) { this->setup_servers_(); } -#endif } void SNTPComponent::update() { // force resync