From 8efa8752df02e5ab3c44ba3477c95eb66c3502f1 Mon Sep 17 00:00:00 2001 From: Colin Date: Sun, 13 Oct 2019 21:15:30 +0100 Subject: [PATCH] Corrected defect where the scope will not attempt to connect the serial port --- Meade.net/SharedResources.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Meade.net/SharedResources.cs b/Meade.net/SharedResources.cs index 6882b4b..1c73926 100644 --- a/Meade.net/SharedResources.cs +++ b/Meade.net/SharedResources.cs @@ -237,7 +237,7 @@ namespace ASCOM.Meade.net if (deviceId == "Serial") { - if (ConnectedDevices[deviceId].Count == 1) + if (ConnectedDevices[deviceId].Count == 0) { var profileProperties = ReadProfile(); SharedSerial.PortName = profileProperties.ComPort;