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

Commit 621eb7c6 authored by Automerger Merge Worker's avatar Automerger Merge Worker Committed by Android (Google) Code Review
Browse files

Merge "Merge "Ignore port when matching with wildcards" into rvc-dev am:...

Merge "Merge "Ignore port when matching with wildcards" into rvc-dev am: d1b6afcc am: 7a1f6344" into rvc-d1-dev-plus-aosp
parents cff8e05f 3bbb6c4c
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1183,7 +1183,8 @@ public class IntentFilter implements Parcelable {
                    return NO_MATCH_DATA;
                }
            }
            if (mPort >= 0) {
            // if we're dealing with wildcard support, we ignore ports
            if (!wildcardSupported && mPort >= 0) {
                if (mPort != data.getPort()) {
                    return NO_MATCH_DATA;
                }