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

Commit 017c5de1 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change I78c4e64a into eclair

* changes:
  Query from Bluez if name is not present in cache.
parents 8b781403 55929a95
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -757,9 +757,7 @@ public class BluetoothService extends IBluetooth.Stub {
        if (!BluetoothAdapter.checkBluetoothAddress(address)) {
            return null;
        }
        Map <String, String> properties = mDeviceProperties.get(address);
        if (properties != null) return properties.get("Name");
        return null;
        return getRemoteDeviceProperty(address, "Name");
    }

    /**