Skip to content

Commit

Permalink
fix(BtLE): GATTPeripheral::serviceUUIDForAssignedNumber() always retu…
Browse files Browse the repository at this point in the history
…rns a null UUID
  • Loading branch information
obiltschnig committed Jun 11, 2024
1 parent c0ff875 commit f400afe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion protocols/BtLE/src/GATTPeripheral.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Poco::UUID GATTPeripheral::serviceUUIDForAssignedNumber(Poco::UInt32 assignedNum
{
if (it->uuid == uuid)
{
break;
return uuid;
}
}

Expand Down

0 comments on commit f400afe

Please sign in to comment.