Add missing AgentVersion to device update.

This commit is contained in:
Jared Goodwin 2019-09-28 13:32:31 -07:00
parent e71d1abb9a
commit e66dc15e93

View File

@ -58,6 +58,7 @@ namespace Remotely.Server.Data
existingDevice.ProcessorCount = device.ProcessorCount;
existingDevice.TotalMemory = device.TotalMemory;
existingDevice.TotalStorage = device.TotalStorage;
existingDevice.AgentVersion = device.AgentVersion;
updatedDevice = existingDevice;
}
else