Fix numbering of sensors (#6305)

This commit is contained in:
Jimmy Hedman 2024-03-01 02:02:33 +01:00 committed by GitHub
parent 4a9d7771fe
commit cf7cc179fb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -21,8 +21,8 @@ class IPAddressEthernetInfo : public PollingComponent, public text_sensor::TextS
if (ip.is_set()) { if (ip.is_set()) {
if (this->ip_sensors_[sensor] != nullptr) { if (this->ip_sensors_[sensor] != nullptr) {
this->ip_sensors_[sensor]->publish_state(ip.str()); this->ip_sensors_[sensor]->publish_state(ip.str());
sensor++;
} }
sensor++;
} }
} }
} }

View file

@ -20,8 +20,8 @@ class IPAddressWiFiInfo : public PollingComponent, public text_sensor::TextSenso
if (ip.is_set()) { if (ip.is_set()) {
if (this->ip_sensors_[sensor] != nullptr) { if (this->ip_sensors_[sensor] != nullptr) {
this->ip_sensors_[sensor]->publish_state(ip.str()); this->ip_sensors_[sensor]->publish_state(ip.str());
sensor++;
} }
sensor++;
} }
} }
} }