Skip to content

Commit

Permalink
Fix for New Uninitialized-Handling
Browse files Browse the repository at this point in the history
  • Loading branch information
cornelius-koepp committed Feb 12, 2024
1 parent 7b8db75 commit 96bd0ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/knx/group_object.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ void GroupObject::valueNoSend(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
this->valueNoSend(value, type);
Expand Down

0 comments on commit 96bd0ee

Please sign in to comment.