diff --git a/esphome/components/sntp/sntp_component.cpp b/esphome/components/sntp/sntp_component.cpp index a6f052d3c2..3a83e05aad 100644 --- a/esphome/components/sntp/sntp_component.cpp +++ b/esphome/components/sntp/sntp_component.cpp @@ -54,9 +54,7 @@ void SNTPComponent::setup() { sntp_set_sync_interval(this->get_update_interval()); #endif - g_sync_callback = [this](struct timeval *tv) { - this->callback_args_.push_back({tv ? *tv : {}, sntp_get_sync_status()}); - }; + g_sync_callback = [this](struct timeval *tv) { callback_args_.push_back({tv ? *tv : {}, sntp_get_sync_status()}); }; ESP_LOGD(TAG, "Set notification callback"); sntp_set_time_sync_notification_cb(sntp_sync_time_cb);