From ce634eac6e44abd52421240ed66033bb7ed4cdc4 Mon Sep 17 00:00:00 2001 From: Sebastian Hildebrandt Date: Wed, 31 Dec 2025 13:47:29 +0100 Subject: [PATCH] bluetooth enimeration issue (windows) wip --- lib/bluetooth.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/bluetooth.js b/lib/bluetooth.js index 4e65511..2838a9d 100644 --- a/lib/bluetooth.js +++ b/lib/bluetooth.js @@ -45,6 +45,9 @@ function parseBluetoothType(str) { if (str.indexOf('audio') >= 0) { result = 'Audio'; } + if (str.indexOf('sound') >= 0) { + result = 'Audio'; + } if (str.indexOf('speaker') >= 0) { result = 'Speaker'; }