Skip to content
This repository has been archived by the owner on Apr 3, 2023. It is now read-only.

Commit

Permalink
Fixes #71
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesmontemagno committed May 21, 2019
1 parent aa30a6f commit 6c87f54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DeviceInfo.Plugin/DeviceInfo.desktop.cs
Expand Up @@ -25,7 +25,7 @@ public DeviceInfoImplementation()
nic.NetworkInterfaceType == NetworkInterfaceType.Ethernet ||
nic.NetworkInterfaceType == NetworkInterfaceType.Wireless80211)
.Select(nic => nic.GetPhysicalAddress().ToString())
.First();
.FirstOrDefault();

public string Model { get; } = Environment.OSVersion.Platform.ToString();

Expand Down

0 comments on commit 6c87f54

Please sign in to comment.