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

Commit 9bdab853 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

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

Change-Id: I7c198d8d407bc9629436235aae6777b8d9567700
parents b166ad00 d1b6afcc
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;
                }