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

Commit e4d76125 authored by SongFerng Wang's avatar SongFerng Wang
Browse files

Fix the isEmbeddedSubscriptionVisible logic

Bug: 314736037
Change-Id: I10ddafbad1590a660735466c0f6d7e9ed8bffcff
Test: local test
parent dd61b6bb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -158,7 +158,7 @@ public class SubscriptionUtil {
        }

        // hide provisioning/bootstrap and satellite profiles for user
        if (isEmbeddedSubscriptionVisible(subInfo)) {
        if (!isEmbeddedSubscriptionVisible(subInfo)) {
            Log.d(TAG, "Do not insert the provision eSIM or NTN eSim");
            return null;
        }
@@ -587,7 +587,7 @@ public class SubscriptionUtil {
        if (info == null) return false;

        // hide provisioning/bootstrap and satellite profiles for user
        if (isEmbeddedSubscriptionVisible(info)) {
        if (!isEmbeddedSubscriptionVisible(info)) {
            return false;
        }