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

Commit 235a9b30 authored by Patrick Baumann's avatar Patrick Baumann Committed by Android (Google) Code Review
Browse files

Merge "Does safe authority comparison in AppsFilter"

parents 0c7f966a ed2a4701
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -211,7 +211,7 @@ public class AppsFilter {
            final Uri data = intent.getData();
            if ("content".equalsIgnoreCase(intent.getScheme())
                    && data != null
                    && providerInfo.authority.equalsIgnoreCase(data.getAuthority())) {
                    && Objects.equals(providerInfo.authority, data.getAuthority())) {
                return true;
            }
        }