This commit is contained in:
David Schontzler
2023-03-10 14:06:36 -08:00
committed by GitHub
parent 74ce177691
commit d4d00f0828
+1 -1
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];
}