Skip to content

Commit

Permalink
[BLUETOOTH] Add the shortname in the Device list, it gives some hint …
Browse files Browse the repository at this point in the history
…on what it it about.. (#863)
  • Loading branch information
pwielders authored Dec 23, 2024
1 parent 5c33abf commit fecbdd2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BluetoothControl/BluetoothControl.h
Original file line number Diff line number Diff line change
Expand Up @@ -3211,7 +3211,7 @@ class BluetoothControl : public PluginHost::IPlugin
std::vector<device> localDevices;

_parent.IterateDevices([&localDevices](DeviceImpl& device) -> bool {
localDevices.push_back({device.RemoteId(), DeviceType(device.Type())});
localDevices.push_back({device.RemoteId(), DeviceType(device.Type()), device.Name() });
return (false);
});

Expand Down

0 comments on commit fecbdd2

Please sign in to comment.