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'; }