This commit is contained in:
David Schontzler 2023-03-10 14:06:36 -08:00 committed by GitHub
parent 74ce177691
commit d4d00f0828
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,7 +63,7 @@ function parseBluetoothManufacturer(str) {
}
function parseBluetoothVendor(str) {
const id = parseInt(id);
const id = parseInt(str);
if (!isNaN(id)) return bluetoothVendors[id];
}