Don't require deviceID to be parsable GUID.

This commit is contained in:
Jared Goodwin 2020-03-05 09:53:42 -08:00
parent fcd07ada1a
commit bd5f967a97

View File

@ -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;
}