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

Commit 3f0ec3f0 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "Avoid crash when checking if EuiccManager is enabled" into main

parents 0333d7a3 f5fb983f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2157,7 +2157,7 @@ public class SubscriptionManagerService extends ISub.Stub {
    @Override
    public List<SubscriptionInfo> getAccessibleSubscriptionInfoList(
            @NonNull String callingPackage) {
        if (!mEuiccManager.isEnabled()) {
        if (mEuiccManager == null || !mEuiccManager.isEnabled()) {
            return null;
        }