Skip to content

Commit

Permalink
emum entry name = vendor-model/SN
Browse files Browse the repository at this point in the history
  • Loading branch information
rmtttt committed Aug 5, 2024
1 parent 1dbb381 commit bc922d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IDSDevice.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ protected override IReadOnlyDictionary<string, object> GetEntries()

foreach(var device in deviceManager.Devices())
{
var name = device.DisplayName();
var name = device.VendorName() + "-" + device.ModelName() + "/" + device.SerialNumber();
if(!devices.ContainsKey(name))
{
devices.Add(name, device);
Expand Down

0 comments on commit bc922d7

Please sign in to comment.