diff --git a/www/js/bluetooth/BluetoothScanPage.tsx b/www/js/bluetooth/BluetoothScanPage.tsx index 27a3e8671..f7c7c3c84 100644 --- a/www/js/bluetooth/BluetoothScanPage.tsx +++ b/www/js/bluetooth/BluetoothScanPage.tsx @@ -37,8 +37,8 @@ const BluetoothScanPage = ({ ...props }: any) => {
{devices.map((device) => { if (device) { - const deviceID = device.slice(0, 18); - const deviceName = device.slice(18); + const deviceID = device.slice(0, 21); + const deviceName = device.slice(21); return ; } return null;