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

Commit 767172a1 authored by cretin45's avatar cretin45
Browse files

SetupWizard: Only call isSimMissing for missing sim page

Change-Id: I31062ac17ace92824653c6b996ff16ee564a963e
parent 031e58eb
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -34,7 +34,7 @@ public class CMSetupWizardData extends AbstractSetupData {
        ArrayList<SetupPage> pages = new ArrayList<SetupPage>();
        pages.add(new WelcomePage(mContext, this));
        pages.add(new WifiSetupPage(mContext, this));
        if (SetupWizardUtils.isGSMPhone(mContext) && SetupWizardUtils.isSimMissing(mContext)) {
        if (SetupWizardUtils.isSimMissing(mContext)) {
            pages.add(new SimCardMissingPage(mContext, this));
        }
        if (SetupWizardUtils.isMultiSimDevice(mContext)