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

Commit f6f1da3d authored by Sanket Padawe's avatar Sanket Padawe
Browse files

Remove flag from intent sent from Catservice to StkApp.

+ Remove FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT from intent sent from
CatService to StkApp as StkApp doesn't have registered receiver.

Bug: 31292260
Change-Id: Icdf688795138342b7de3b1a4cd31563351b2ccd5
parent 59a14aab
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -511,7 +511,6 @@ public class CatService extends Handler implements AppInterface {

    private void broadcastCatCmdIntent(CatCmdMessage cmdMsg) {
        Intent intent = new Intent(AppInterface.CAT_CMD_ACTION);
        intent.addFlags(Intent.FLAG_RECEIVER_REGISTERED_ONLY_BEFORE_BOOT);
        intent.putExtra("STK CMD", cmdMsg);
        intent.putExtra("SLOT_ID", mSlotId);
        CatLog.d(this, "Sending CmdMsg: " + cmdMsg+ " on slotid:" + mSlotId);