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 7d7b835 commit a3f271bCopy full SHA for a3f271b
src/corebluetooth/central_delegate.rs
@@ -345,12 +345,12 @@ declare_class!(
345
&self,
346
_central: &CBCentralManager,
347
peripheral: &CBPeripheral,
348
- _error: Option<&NSError>,
+ error: Option<&NSError>,
349
) {
350
trace!(
351
"delegate_centralmanager_diddisconnectperipheral_error {} (error={:?})",
352
peripheral_debug(peripheral),
353
- _error
+ error
354
);
355
let peripheral_uuid = nsuuid_to_uuid(unsafe { &peripheral.identifier() });
356
self.send_event(CentralDelegateEvent::DisconnectedDevice { peripheral_uuid });
0 commit comments