From c33e3d970fc165e4c9f1c412b61039729bc3c684 Mon Sep 17 00:00:00 2001 From: Jared Goodwin Date: Sat, 28 Sep 2019 22:40:55 -0700 Subject: [PATCH] Set device as online in Create method. --- Shared/Models/Device.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Shared/Models/Device.cs b/Shared/Models/Device.cs index e49b365d..842cdfaf 100644 --- a/Shared/Models/Device.cs +++ b/Shared/Models/Device.cs @@ -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,