Set device as online in Create method.

This commit is contained in:
Jared Goodwin 2019-09-28 22:40:55 -07:00
parent 2697afce12
commit c33e3d970f

View File

@ -76,6 +76,7 @@ namespace Remotely.Shared.Models
OSArchitecture = RuntimeInformation.OSArchitecture,
OSDescription = RuntimeInformation.OSDescription,
Is64Bit = Environment.Is64BitOperatingSystem,
IsOnline = true,
Drives = DriveInfo.GetDrives().Where(x => x.IsReady).Select(x => new Drive()
{
DriveFormat = x.DriveFormat,