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

Commit 625fa107 authored by gang.huang's avatar gang.huang Committed by gang huang
Browse files

Ignore null action in BinaryTransparencyService$PackageUpdatedReceiver

Bug: 376191902
Test: Manual.
Change-Id: I0d980c602a82fc39533724188761b226f70bc1ef
parent 56b26cfc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1559,7 +1559,7 @@ public class BinaryTransparencyService extends SystemService {
    private class PackageUpdatedReceiver extends BroadcastReceiver {
        @Override
        public void onReceive(Context context, Intent intent) {
            if (!intent.getAction().equals(Intent.ACTION_PACKAGE_ADDED)) {
            if (!Intent.ACTION_PACKAGE_ADDED.equals(intent.getAction())) {
                return;
            }