From e35aaff742622e3e67eb78b35aba05697a200b3d Mon Sep 17 00:00:00 2001 From: Katie Rischpater <98350084+the-bay-kay@users.noreply.github.com> Date: Thu, 29 Feb 2024 10:46:29 -0800 Subject: [PATCH] Updated second API call --- www/js/bluetooth/blueoothScanner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/js/bluetooth/blueoothScanner.ts b/www/js/bluetooth/blueoothScanner.ts index bfeb3c8b1..491bec25b 100644 --- a/www/js/bluetooth/blueoothScanner.ts +++ b/www/js/bluetooth/blueoothScanner.ts @@ -50,7 +50,7 @@ export default function gatherBluetoothData(t): Promise { }); const pairedDevicesPromise = new Promise((pairRes, pairRej) => { - window['bluetoothClassicSerial'].discoverUnpaired( + window['bluetoothClassicSerial'].list( (devices: Array) => { handleLogs(devices); pairRes(logs);