Skip to content

Commit

Permalink
disable detection of periphals without serviceIDs
Browse files Browse the repository at this point in the history
  • Loading branch information
Guido Doumen committed Dec 20, 2024
1 parent aa62bf1 commit ee6471a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/ble/base/interface.ts
Original file line number Diff line number Diff line change
Expand Up @@ -478,7 +478,10 @@ export class BleInterface extends EventEmitter implements IBleInterface<BlePer
return
}

if (announcement.serviceUUIDs.length === 0){
if (announcement.serviceUUIDs.length === 0){
// TODO: check if we can re-enable
return

if (this.isCompleting(announcement)) {
return
}
Expand Down

0 comments on commit ee6471a

Please sign in to comment.