Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cab94f75 authored by Danica Chang's avatar Danica Chang Committed by Android Git Automerger
Browse files

am cbbd3a1b: am f23682f1: Merge "fixed parsing issue in BluetoothService so...

am cbbd3a1b: am f23682f1: Merge "fixed parsing issue in BluetoothService so that it parses the UUID property correctly" into gingerbread

Merge commit 'cbbd3a1b'

* commit 'cbbd3a1b':
  fixed parsing issue in BluetoothService so that it parses the UUID property correctly
parents 4a1d035b cbbd3a1b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -927,7 +927,7 @@ public class BluetoothService extends IBluetooth.Stub {
                Log.e(TAG, "Error:Adapter Property at index" + i + "is null");
                continue;
            }
            if (name.equals("Devices")) {
            if (name.equals("Devices") || name.equals("UUIDs")) {
                StringBuilder str = new StringBuilder();
                len = Integer.valueOf(properties[++i]);
                for (int j = 0; j < len; j++) {