We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b75a4ed commit ac5a48fCopy full SHA for ac5a48f
src/noble/lib/bluez/bindings.js
@@ -582,9 +582,11 @@ class BluezBindings extends EventEmitter {
582
try {
583
await this.hciAdapter.RemoveDevice(objectPath);
584
} catch (err) {
585
- debug(
586
- `[${peripheralUuid}]<PropertiesChanged> Error while removing the device: ${err.message}, ${err.type}`
587
- );
+ if (err.type !== 'org.bluez.Error.DoesNotExist') {
+ debug(
+ `[${peripheralUuid}]<PropertiesChanged> Error while removing the device: ${err.message}, ${err.type}`
588
+ );
589
+ }
590
}
591
592
0 commit comments