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

Commit 8cd9566c authored by Fergus Henderson's avatar Fergus Henderson Committed by Android Git Automerger
Browse files

am 1c2df382: Fix logic error in Pszczepaniak\'s recent change.

# Via Fergus Henderson
* commit '1c2df382':
  Fix logic error in Pszczepaniak's recent change.
parents ede6a689 1c2df382
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1475,8 +1475,8 @@ public class TextToSpeech {
                        Log.w(TAG, method + " failed: not connected to TTS engine");
                        return errorResult;
                    }
                    if (onlyEstablishedConnection && isEstablished()) {
                        Log.w(TAG, method + " failed: TTS engine connection not fully setuped");
                    if (onlyEstablishedConnection && !isEstablished()) {
                        Log.w(TAG, method + " failed: TTS engine connection not fully set up");
                        return errorResult;
                    }
                    return action.run(mService);