Skip to content

Commit

Permalink
Fix confusing error message. (#26157)
Browse files Browse the repository at this point in the history
We were logging a message about "stop pairing" when the real error was that we
could not get the device being commissioned.
  • Loading branch information
bzbarsky-apple authored and pull[bot] committed Aug 8, 2024
1 parent d945556 commit 1175119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/darwin/Framework/CHIP/MTRDeviceController.mm
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ - (MTRBaseDevice *)deviceBeingCommissionedWithNodeID:(NSNumber *)nodeID error:(N
chip::CommissioneeDeviceProxy * deviceProxy;

auto errorCode = self->_cppCommissioner->GetDeviceBeingCommissioned(nodeID.unsignedLongLongValue, &deviceProxy);
VerifyOrReturnValue(![MTRDeviceController checkForError:errorCode logMsg:kErrorStopPairing error:error], nil);
VerifyOrReturnValue(![MTRDeviceController checkForError:errorCode logMsg:kErrorGetCommissionee error:error], nil);

return [[MTRBaseDevice alloc] initWithPASEDevice:deviceProxy controller:self];
};
Expand Down

0 comments on commit 1175119

Please sign in to comment.