Skip to content

Commit

Permalink
[bluetooth.bluegiga] Fix CompareObjectsWithEquals findings regression…
Browse files Browse the repository at this point in the history
… causing all devices to be beacons

Signed-off-by: Jørgen Melhus <5099412+jmelhus@users.noreply.github.com>
  • Loading branch information
jmelhus authored and frederictobiasc committed Oct 26, 2021
1 parent a511cb3 commit d437fab
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ private void handleProcedureCompletedEvent(BlueGigaProcedureCompletedEvent event
return;
}

if (!PROCEDURE_NONE.equals(currentProcedure)) {
if (PROCEDURE_NONE.equals(currentProcedure)) {
logger.debug("BlueGiga procedure completed but procedure is null with connection {}, address {}",
connection, address);
return;
Expand Down

0 comments on commit d437fab

Please sign in to comment.