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

Commit f321edd5 authored by Ryan Lin's avatar Ryan Lin Committed by Automerger Merge Worker
Browse files

Merge "Fix Voice shortcuts not working system-wide in R" into rvc-dev am:...

Merge "Fix Voice shortcuts not working system-wide in R" into rvc-dev am: 2df7af78 am: 6a502384 am: f95b8012

Change-Id: Ifdb0cf20e180b2da75b97c9dbd463d1b71525018
parents 4f2a5672 f95b8012
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -283,8 +283,8 @@ public class SpeechRecognizer {
            } else {
                serviceIntent.setComponent(mServiceComponent);
            }
            
            if (!mContext.bindService(serviceIntent, mConnection, Context.BIND_AUTO_CREATE)) {
            if (!mContext.bindService(serviceIntent, mConnection,
                    Context.BIND_AUTO_CREATE | Context.BIND_INCLUDE_CAPABILITIES)) {
                Log.e(TAG, "bind to recognition service failed");
                mConnection = null;
                mService = null;