Skip to content

Commit

Permalink
Bugfix : Set VendorIdentifier instead of VendorName
Browse files Browse the repository at this point in the history
  • Loading branch information
saransh14 authored Apr 17, 2024
1 parent abadc8f commit 3e25967
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ protected Device createDevice(RemoteDevice d) {
device.setVendorName(d.getVendorName());
}
if (d.getVendorIdentifier() != -1) {
device.setVendorName(d.getVendorName());
device.setVendorIdentifier(d.getVendorIdentifier());
}
if (d.getCharacterStringProperty(PropertyIdentifier.serialNumber) != null
&& !d.getCharacterStringProperty(PropertyIdentifier.serialNumber).isEmpty()) {
Expand Down

0 comments on commit 3e25967

Please sign in to comment.