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

Commit 5538f6d5 authored by Xiangyu/Malcolm Chen's avatar Xiangyu/Malcolm Chen Committed by Gerrit Code Review
Browse files

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

parents 96ab9b0a f213ff62
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2321,7 +2321,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());
        }