From a9efc5a8fc873b10aeba6d9b62ccbb8e34deea27 Mon Sep 17 00:00:00 2001 From: Ask Bojesen Date: Wed, 8 May 2024 18:01:56 +0200 Subject: [PATCH] Fixed comment in code --- Source/Plugin.BLE/Windows/Adapter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Plugin.BLE/Windows/Adapter.cs b/Source/Plugin.BLE/Windows/Adapter.cs index 77ea6070..b14418ef 100644 --- a/Source/Plugin.BLE/Windows/Adapter.cs +++ b/Source/Plugin.BLE/Windows/Adapter.cs @@ -151,7 +151,7 @@ private void Device_ConnectionStatusChanged(BluetoothLEDevice nativeDevice, obje bool disconnectRequested = disconnectingRegistry.Remove(id); if (!disconnectRequested) { - // device was powered off or went out of range. Call DisconnectDeviceNative to cleanup + // Device was powered off or went out of range. Call DisconnectInternal to cleanup // resources otherwise windows will not disconnect on a subsequent connect-disconnect. ((Device)disconnectedDevice).DisconnectInternal(); }