1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-08 12:53:45 +01:00

[api] Simplify message reading conditional (#11016)

This commit is contained in:
J. Nick Koston
2025-10-04 20:42:21 -05:00
committed by GitHub
parent 3f9924eac2
commit b1859c50bd

View File

@@ -169,11 +169,8 @@ void APIConnection::loop() {
} else {
this->last_traffic_ = now;
// read a packet
if (buffer.data_len > 0) {
this->read_message(buffer.data_len, buffer.type, &buffer.container[buffer.data_offset]);
} else {
this->read_message(0, buffer.type, nullptr);
}
this->read_message(buffer.data_len, buffer.type,
buffer.data_len > 0 ? &buffer.container[buffer.data_offset] : nullptr);
if (this->flags_.remove)
return;
}