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

Commit c21af2fc authored by Ethon_Hu's avatar Ethon_Hu Committed by Felipe Leme
Browse files

Fix JE in RemoteFillService.



Make sure onServiceConnected operation to be handled in same thread.

Bug: 120040641
Test: atest CtsAutoFillServiceTestCases
Change-Id: Ie977426e29b551af1d25e5e1a4f440b8cc2726ab
Signed-off-by: default avatarEthon_Hu <huyuxin3818@gmail.com>
parent 6e7ff180
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -253,7 +253,7 @@ public abstract class AbstractRemoteService implements DeathRecipient {
        }

        final boolean willBind = mContext.bindServiceAsUser(mIntent, mServiceConnection, flags,
                new UserHandle(mUserId));
                mHandler, new UserHandle(mUserId));

        if (!willBind) {
            Slog.w(mTag, "could not bind to " + mIntent + " using flags " + flags);