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

Commit 7c0248bc authored by Jayachandran C's avatar Jayachandran C Committed by Android (Google) Code Review
Browse files

Merge "Remove usage of isSubscriptionVisible() in getSelectableSubscriptionInfoList()" into main

parents 21af9267 c6677abc
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3785,9 +3785,9 @@ public class SubscriptionManager {
            Map<ParcelUuid, SubscriptionInfo> groupMap = new HashMap<>();

            for (SubscriptionInfo info : availableList) {
                // Opportunistic subscriptions are considered invisible
                // Grouped opportunistic subscriptions are considered invisible
                // to users so they should never be returned.
                if (!isSubscriptionVisible(info)) continue;
                if (info.getGroupUuid() != null && info.isOpportunistic()) continue;

                ParcelUuid groupUuid = info.getGroupUuid();
                if (groupUuid == null) {