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

Commit b013468b authored by Andre Eisenbach's avatar Andre Eisenbach Committed by Android Git Automerger
Browse files

am f1ed1fdb: am 1b03cd8e: am 1d5e2e29: Merge "Bluetooth: Fix profile...

am f1ed1fdb: am 1b03cd8e: am 1d5e2e29: Merge "Bluetooth: Fix profile auto-connect logic" into mnc-dr-dev

* commit 'f1ed1fdb':
  Bluetooth: Fix profile auto-connect logic
parents 8dcd14cd f1ed1fdb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -539,10 +539,10 @@ public final class CachedBluetoothDevice implements Comparable<CachedBluetoothDe
         * Otherwise, allow the connect on UUID change.
         */
        if (!mProfiles.isEmpty()
                && ((mConnectAttempted + timeout) > SystemClock.elapsedRealtime()
                || (mConnectAttempted == 0))) {
                && ((mConnectAttempted + timeout) > SystemClock.elapsedRealtime())) {
            connectWithoutResettingTimer(false);
        }

        dispatchAttributesChanged();
    }