1
0
mirror of https://github.com/thelsing/knx.git synced 2025-04-19 01:15:27 +02:00

Fix for New Uninitialized-Handling

This commit is contained in:
Cornelius Köpp 2024-01-22 20:47:59 +01:00
parent 7b8db75d5c
commit 96bd0ee9ec

View File

@ -290,7 +290,7 @@ void GroupObject::valueNoSend(const KNXValue& value, const Dpt& type)
bool GroupObject::valueNoSendCompare(const KNXValue& value, const Dpt& type) bool GroupObject::valueNoSendCompare(const KNXValue& value, const Dpt& type)
{ {
if (_commFlag == Uninitialized) if (_commFlagEx.uninitialized)
{ {
// always set first value // always set first value
this->valueNoSend(value, type); this->valueNoSend(value, type);