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

Commit 55929a95 authored by Jaikumar Ganesh's avatar Jaikumar Ganesh
Browse files

Query from Bluez if name is not present in cache.

Change-Id: I78c4e64a52b8290053dedfb1326df8d4c20f8a09
parent eaa18dec
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");
    }

    /**