summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKarsten Heimrich <karsten.heimrich@qt.io>2018-05-29 16:28:32 +0200
committerKarsten Heimrich <karsten.heimrich@qt.io>2018-05-29 20:16:25 +0000
commitb3bf881ff8d1671c9bd3f46bfe7a6e835fe087ee (patch)
tree0c22e5bbe6a495184f7c52bf56f65bc4cc109afe
parent3fbf2ee62c54b067bdb915c5b802c4b456b6020e (diff)
Fix broken device management configuration request
Change-Id: Ic98e5900487cce5b6849fc29dc83b43f1e624893 Reviewed-by: Andrew O'Doherty <andrew.odoherty@qt.io> Reviewed-by: Karsten Heimrich <karsten.heimrich@qt.io>
-rw-r--r--src/knx/netip/qknxnetipendpointconnection.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/knx/netip/qknxnetipendpointconnection.cpp b/src/knx/netip/qknxnetipendpointconnection.cpp
index 14cb480..3d6ba63 100644
--- a/src/knx/netip/qknxnetipendpointconnection.cpp
+++ b/src/knx/netip/qknxnetipendpointconnection.cpp
@@ -427,7 +427,7 @@ void QKnxNetIpEndpointConnectionPrivate::processDeviceConfigurationRequest(const
{
qDebug() << "Received device configuration request:" << frame;
- if (frame.channelId() == m_channelId) {
+ if (frame.channelId() != m_channelId) {
qDebug() << "Request was ignored due to wrong channel ID. Expected:" << m_channelId
<< "Current:" << frame.channelId();
return;