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

Commit df0454f0 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 4754571 from f8e6e7f5f31e5f3f5666e1c64f7538dd0ee1a983 to pi-release

Change-Id: Id82e70c9853375cc596d1066b6366bd3e05ce53a
parents 1569333b 69072b25
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -848,7 +848,11 @@ public final class BluetoothDevice implements Parcelable {
            return null;
        }
        try {
            return service.getRemoteName(this);
            String name = service.getRemoteName(this);
            if (name != null) {
                return name.replaceAll("[\\t\\n\\r]+", " ");
            }
            return null;
        } catch (RemoteException e) {
            Log.e(TAG, "", e);
        }