We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4ee15b commit c5023faCopy full SHA for c5023fa
examples/chip-tool/commands/clusters/ClusterCommand.h
@@ -69,7 +69,7 @@ class ClusterCommand : public InteractionModelCommands, public ModelCommand, pub
69
const chip::app::Clusters::IcdManagement::Commands::RegisterClient::Type & value)
70
{
71
ReturnErrorOnFailure(InteractionModelCommands::SendCommand(device, endpointId, clusterId, commandId, value));
72
- mScopedNodeId = chip::ScopedNodeId(value.checkInNodeID, device->GetSecureSession().Value()->GetFabricIndex());
+ mScopedNodeId = chip::ScopedNodeId(device->GetDeviceId(), device->GetSecureSession().Value()->GetFabricIndex());
73
mMonitoredSubject = value.monitoredSubject;
74
mClientType = value.clientType;
75
memcpy(mICDSymmetricKey, value.key.data(), value.key.size());
0 commit comments