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

Commit a8697b4e authored by Rongxuan Liu's avatar Rongxuan Liu Committed by Gerrit Code Review
Browse files

Merge "BroadcastStateMachine: Treat ConnectedProcessing as connected" into main

parents 596d4b0f b54067b8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2054,7 +2054,7 @@ public class BassClientStateMachine extends StateMachine {
    }

    synchronized boolean isConnected() {
        return getCurrentState() == mConnected;
        return (getCurrentState() == mConnected) || (getCurrentState() == mConnectedProcessing);
    }

    public static String messageWhatToString(int what) {