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

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

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

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

* commit 'b013468b':
  Bluetooth: Fix profile auto-connect logic
parents 4b4d29a6 b013468b
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();
    }