This commit is contained in:
J. Nick Koston 2025-06-27 01:17:26 +02:00
parent 384f27cd6d
commit 26badf201d
No known key found for this signature in database

View File

@ -502,7 +502,7 @@ bool APIServer::save_noise_psk(psk_t psk, bool make_active) {
#ifdef USE_HOMEASSISTANT_TIME
void APIServer::request_time() {
for (auto &client : this->clients_) {
if (!client->remove_ && client->is_authenticated())
if (!client->flags_.remove && client->is_authenticated())
client->send_time_request();
}
}