From bd5f967a9732c98cd8077f9622d238f445d47d27 Mon Sep 17 00:00:00 2001 From: Jared Goodwin Date: Thu, 5 Mar 2020 09:53:42 -0800 Subject: [PATCH] Don't require deviceID to be parsable GUID. --- Agent.Installer.Win/Services/InstallerService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Agent.Installer.Win/Services/InstallerService.cs b/Agent.Installer.Win/Services/InstallerService.cs index ba1fe219..6030853f 100644 --- a/Agent.Installer.Win/Services/InstallerService.cs +++ b/Agent.Installer.Win/Services/InstallerService.cs @@ -280,7 +280,7 @@ namespace Remotely.Agent.Installer.Win.Services }; } - if (!string.IsNullOrWhiteSpace(deviceUuid) && Guid.TryParse(deviceUuid, out _)) + if (!string.IsNullOrWhiteSpace(deviceUuid)) { connectionInfo.DeviceID = deviceUuid; }