From d4d00f0828bea6601e4a0d7d3ff997b979239316 Mon Sep 17 00:00:00 2001 From: David Schontzler <2080286+schontz@users.noreply.github.com> Date: Fri, 10 Mar 2023 14:06:36 -0800 Subject: [PATCH] Fix typo --- lib/bluetooth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bluetooth.js b/lib/bluetooth.js index 1becdd9..9347c04 100644 --- a/lib/bluetooth.js +++ b/lib/bluetooth.js @@ -63,7 +63,7 @@ function parseBluetoothManufacturer(str) { } function parseBluetoothVendor(str) { - const id = parseInt(id); + const id = parseInt(str); if (!isNaN(id)) return bluetoothVendors[id]; }