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

Commit e621af4f authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Ignore null action in BinaryTransparencyService$PackageUpdatedReceiver" into main

parents 757c9b4c 625fa107
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;
            }