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

Commit 239f77d2 authored by Jeff Brown's avatar Jeff Brown
Browse files

Fix a regression matching intents when action doesn't matter.

Bug: 3482199
Change-Id: I0960e4396f4e71e9a3fc71146730030a52f96e9f
parent 50531248
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1094,7 +1094,7 @@ public class IntentFilter implements Parcelable {
     */
    public final int match(String action, String type, String scheme,
            Uri data, Set<String> categories, String logTag) {
        if (!matchAction(action)) {
        if (action != null && !matchAction(action)) {
            if (Config.LOGV) Log.v(
                logTag, "No matching action " + action + " for " + this);
            return NO_MATCH_ACTION;