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

Commit 45b45e60 authored by Xiangyu/Malcolm Chen's avatar Xiangyu/Malcolm Chen Committed by Android (Google) Code Review
Browse files

Merge "Fix bug of getActiveSubIdList returning empty subId list."

parents d8dcb7db 1ef7c273
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2288,7 +2288,7 @@ public class SubscriptionController extends ISub.Stub {

        if (visibleOnly) {
            // Grouped opportunistic subscriptions should be hidden.
            allSubs = allSubs.stream().filter(subId -> isInvisibleSubscription(subId))
            allSubs = allSubs.stream().filter(subId -> !isInvisibleSubscription(subId))
                    .collect(Collectors.toList());
        }